CannotListenError: Couldn't listen on any:9008: [Errno 98] Address already in use

CannotListenError: Couldn't listen on any:9008: [Errno 98] Address already in use

我正在 python 上在 websocket 上开发 Autobahn 的应用程序。 我发现一个问题,如果我在中断后重新启动我的服务器代码一次,那么我的服务器代码将向我发送如下错误:

2016-03-03 13:20:34+0530 [-] Log opened.
2016-03-03 13:20:34+0530 [-] Traceback (most recent call last):
2016-03-03 13:20:34+0530 [-]   File "TestServer.py", line 23, in <module>
2016-03-03 13:20:34+0530 [-]     reactor.listenTCP(9008, factory)
2016-03-03 13:20:34+0530 [-]   File "/home/ddserver/python1/local/lib/python2.7/site-packages/twisted/internet/posixbase.py", line 478, in listenTCP
2016-03-03 13:20:34+0530 [-]     p.startListening()
2016-03-03 13:20:34+0530 [-]   File "/home/ddserver/python1/local/lib/python2.7/site-packages/twisted/internet/tcp.py", line 984, in startListening
2016-03-03 13:20:34+0530 [-]     raise CannotListenError(self.interface, self.port, le)
2016-03-03 13:20:34+0530 [-] twisted.internet.error.CannotListenError: Couldn't listen on any:9008: [Errno 98] Address already in use.

我错误地理解有一些基本服务即使在中断服务器后仍然在后面运行,但是所有这些端口有多清晰?

你说得很对,即使在你中断之后,你的服务仍ps 运行。您需要检查该端口上的 运行 进程并手动终止它。 您可以使用命令:ps aux 查找您的进程并使用以下命令终止它:kill -9 或者您可以寻求帮助 here:

sudo lsof -i TCP:9008 | grep LISTEN效果很好。

参考Python twisted reactor - address already in use