SocketServer.ThreadingTCPServer - 程序重启后无法绑定到地址

时间:2010-02-16 16:15:23

标签: python linux sockets tcpserver

作为cannot-bind-to-address-after-socket-program-crashes的后续行动,我在重新启动程序后收到此错误:

  

socket.error:[Errno 98]地址已在使用中

在这种特殊情况下,程序不是直接使用套接字,而是启动自己的线程TCP服务器:

httpd = SocketServer.ThreadingTCPServer(('localhost', port), CustomHandler)
httpd.serve_forever()

如何修复此错误消息?

2 个答案:

答案 0 :(得分:16)

上述解决方案对我不起作用,但这个解决方案确实如此:

   SocketServer.ThreadingTCPServer.allow_reuse_address = True
   server = SocketServer.ThreadingTCPServer(("localhost", port), CustomHandler)
   server.serve_forever()

答案 1 :(得分:11)

在这种特殊情况下,当设置.setsockopt(SOL_SOCKET, SO_REUSEADDR, 1)选项时,可以从TCPServer类调用allow_reuse_address。所以我能够解决它如下:

httpd = SocketServer.ThreadingTCPServer(('localhost', port), CustomHandler, False) # Do not automatically bind
httpd.allow_reuse_address = True # Prevent 'cannot bind to address' errors on restart
httpd.server_bind()     # Manually bind, to support allow_reuse_address
httpd.server_activate() # (see above comment)
httpd.serve_forever()

无论如何,认为这可能有用。 Python 3.0中的解决方案略有不同