Python server “Only one usage of each socket address is normally permitted”

后端 未结 7 1000
野趣味
野趣味 2020-11-30 06:21

I\'m trying to create a very basic server in python that listens in on a port, creates a TCP connection when a client tries to connect, receives data, sends something back,

相关标签:
7条回答
  • 2020-11-30 07:25

    It may be because you have not terminated the server code and tried to run it again on a another cmd. Server cannot be hosted on the same port number, try killing the previous hosted server.

    0 讨论(0)
提交回复
热议问题