SystemRage / py-kms

KMS Server Emulator written in Python
The Unlicense
2.04k stars 618 forks source link

Error: ←[7m←[91m←[1mSO_REUSEPORT not supported on this platform. Exiting...←[0m #126

Closed ganeshkakade closed 3 years ago

ganeshkakade commented 3 years ago

when I tried to run the pykms_Server.py, got the error "←[7m←[91m←[1mSO_REUSEPORT not supported on this platform. Exiting...←[0m" Any idea what could be the issue? Is there a thing that I need to enable in the system first before running the given command?

Configuration: Edition : Windows 10 Pro Version : 20H2 OS build : 19042.746 Experience : Windows Feature Experience Pack 120.2212.551.0

SystemRage commented 3 years ago

try with: python3 pykms_Server.py connect --no-reuse

It seems Windows only knows the SO_REUSEADDR option, there is no SO_REUSEPORT.

102

ganeshkakade commented 3 years ago

Awesome! Thanks @SystemRage. Now it is working.