Python服务器“每个套接字地址通常只允许使用一种”

问题描述

调用bind()之前,启用SO_REUSEADDR套接字选项。这允许地址/端口立即重用,而不是将其停留在TIME_WAIT状态几分钟,以等待延迟的数据包到达。

s.setsockopt(socket.soL_SOCKET, socket.so_REUSEADDR, 1)

解决方法

我正在尝试用python创建一个非常基本的服务器,该服务器侦听端口,在客户端尝试连接时创建TCP连接,接收数据,发回一些东西,然后再次侦听(并无限地重复该过程)。这是我到目前为止所拥有的:

from socket import *

serverName = "localhost"
serverPort = 4444
BUFFER_SIZE = 1024

s = socket(AF_INET,SOCK_STREAM)
s.bind((serverName,serverPort))
s.listen(1)

print "Server is ready to receive data..."

while 1:
        newConnection,client = s.accept()
        msg = newConnection.recv(BUFFER_SIZE)

        print msg

        newConnection.send("hello world")
        newConnection.close()

有时,这似乎工作得很好(如果我将浏览器指向“ localhost:4444”,则服务器将打印出HTTP GET请求,而网页将显示文本“ hello
world”)。但是当我在最后几分钟关闭服务器后尝试启动服务器时,偶尔会收到以下错误消息:

Traceback (most recent call last):
  File "path\server.py",line 8,in <module>
    s.bind((serverName,serverPort))
  File "C:\Python27\lib\socket.py",line 224,in meth
    return getattr(self._sock,name)(*args)
error: [Errno 10048] Only one usage of each socket address (protocol/network address/port) is normally permitted

我正在使用Windows 7在python中进行编程。有关如何解决此问题的任何想法?