关闭 TCPServer 后直接在代码中再次使用 ThreadingMixIn 启动它。 (给出“地址已在使用中”)
我尝试在Python中使用线程(ThreadingMixIn)编写TCPServer。问题是,当我尝试再次运行它时,我无法正确关闭它,因为我收到 socket.error: [Errno 48] 地址已在使用中
。这是触发问题的 python 代码的一个最小示例:
import socket
import threading
import SocketServer
class FakeNetio230aHandler(SocketServer.BaseRequestHandler):
def send(self,message):
self.request.send(message+N_LINE_ENDING)
def handle(self):
self.request.send("Hello\n")
class FakeNetio230a(SocketServer.ThreadingMixIn, SocketServer.TCPServer):
def __init__(self, server_address, RequestHandlerClass):
self.allow_reuse_address = True
SocketServer.TCPServer.__init__(self, server_address, RequestHandlerClass)
if __name__ == '__main__':
for i in range(2):
fake_server = FakeNetio230a(("", 1234), FakeNetio230aHandler)
server_thread = threading.Thread(target=fake_server.serve_forever)
server_thread.setDaemon(True)
server_thread.start()
# might add some client connection here
fake_server.shutdown()
所有主要代码应该做的就是启动服务器,关闭它并再次运行它。但它会触发上述错误,因为第一次关闭后套接字尚未释放。
我认为设置 self.allow_reuse_address = True 可以解决问题,但这不起作用。当 python 程序完成后,我可以立即再次运行它,并且它可以启动服务器一次(但同样不能启动两次)。
但是,当我随机化端口(例如,将 1234
替换为 1234+i
)时,问题就消失了,因为没有其他服务器正在侦听该地址。
有一个类似的 SO Q 从 ThreadingTCPServer 正常关闭,但解决方案(将 allow_reuse_address
设置为 True
不适用于我的代码,并且我不使用 ThreadingTCPServer)。
我必须如何修改我的代码才能在我的代码中启动服务器两次?
更多信息:我这样做的原因是我想运行一些单元测试对于我的 python 项目。这需要提供我的软件应该连接到的(假)服务器。
编辑:
我刚刚找到了问题的最正确答案:我必须在主执行代码的末尾添加 fake_server.server_close()
(就在 fake_server.shutdown()
之后) )。我在 TCPServer
实现的源文件中找到了它。它所做的只是self.socket.close()
。
I try to program a TCPServer with threads (ThreadingMixIn) in Python. The problem is that I can't shut it down properly as I get the socket.error: [Errno 48] Address already in use
when I try to run it again. This is a minimal example of the python code that triggers the problem:
import socket
import threading
import SocketServer
class FakeNetio230aHandler(SocketServer.BaseRequestHandler):
def send(self,message):
self.request.send(message+N_LINE_ENDING)
def handle(self):
self.request.send("Hello\n")
class FakeNetio230a(SocketServer.ThreadingMixIn, SocketServer.TCPServer):
def __init__(self, server_address, RequestHandlerClass):
self.allow_reuse_address = True
SocketServer.TCPServer.__init__(self, server_address, RequestHandlerClass)
if __name__ == '__main__':
for i in range(2):
fake_server = FakeNetio230a(("", 1234), FakeNetio230aHandler)
server_thread = threading.Thread(target=fake_server.serve_forever)
server_thread.setDaemon(True)
server_thread.start()
# might add some client connection here
fake_server.shutdown()
All the main code should do is to start the server, shut it down and run it again. But it triggers the error stated above because the socket has not been released after the first shutdown.
I thought that setting self.allow_reuse_address = True
could solve the problem, but that did not work. When the python program finishes I can run it again straight away and it can start the server once (but again not twice).
However the problem is gone when I randomize the port (replace 1234
by 1234+i
for example) as no other server is listening on that address.
There is a similar SO Q Shutting down gracefully from ThreadingTCPServer but the solution (set allow_reuse_address
to True
does not work for my code and I don't use ThreadingTCPServer).
How do I have to modify my code in order to be able to start the server twice in my code?
Some more information: The reason why I'm doing this is that I want to run some unit tests for my python project. This requires to provide a (fake) server that my software should to connect to.
edit:
I just found the most correct answer to my problem: I have to add fake_server.server_close()
at the end of my main execution code (right after fake_server.shutdown()
). I found it in the source file of the TCPServer
implementation. All it does is self.socket.close()
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不知何故,当您分配给它时,
fake_server
不会解除绑定(在for
语句的第一行中)。要解决这个问题,只需在循环末尾删除
fake_server
即可:Somehow,
fake_server
doesn't unbind when you assign to it (in first line infor
statement).To fix that, just remove
fake_server
at the end of loop:这篇文章帮助我解决了未关闭的套接字问题。
我遇到了同样的问题,想在这里发布我的 TCP 服务器类(和客户端方法)的简单实现。
我创建了一个 TCPThreadedServer 类。为了使用它,需要继承,并且必须重写方法
process(msg)
。每次服务器收到消息msg
时都会调用重写的方法,如果它返回一个非None
对象,它将作为字符串返回到连接的客户端。我发现它很容易使用:
我使用了以下方法:
导入插座
享受吧!
This post helped me get over the un-closed socket problem.
I had the same problem and wanted to post here my simple implementation for TCP server class (and client method).
I made a
TCPThreadedServer
class. In order to use it is needed to be inherited, and the methodprocess(msg)
must be overridden. the overridden method invokes every time the server gets a messagemsg
, and if it returns a notNone
object, it will be returned as string to the connected client.I found it quite easy to use:
I used the method:
import socket
Enjoy it!
将您的
FakeNetio230a
定义更改为:然后,在 FakeNetio230a 实例下方的入口点中添加这两行:
下面是一个示例:
Change your
FakeNetio230a
definition to this:Then, add these two lines in your entry point below your FakeNetio230a instantiation:
Here's an example: