如何以编程方式杀死websocket服务器?我将把这个服务器和其他东西一起部署到生产中。我喜欢构建一个单独的python脚本,向所有东西发送一个终止信号。如果没有用户键盘中断或kill-9,我无法想出如何杀死这个东西。
sys.exit((不起作用。
psutil和terminate((也不起作用
import os
import psutil
current_system_pid = os.getpid()
ThisSystem = psutil.Process(current_system_pid)
ThisSystem.terminate()
我没主意了。现在我在命令线上用kill-9杀死它。
当我以各种方式杀死它时,它往往会在下面看到这条消息,但scrip仍在运行
2020-12-12 12:24:54-0500 [autobahn.twisted.websocket.WebSocketServerFactory] (TCP Port 8080 Closed)
2020-12-12 12:24:54-0500 [-] Stopping factory <autobahn.twisted.websocket.WebSocketServerFactory object at 0x110680f28>
高速公路安装:
pip install autobahn[twisted]
代码:
from autobahn.twisted.websocket import WebSocketServerProtocol, WebSocketServerFactory
import sys
from twisted.python import log
from twisted.internet import reactor
class MyServerProtocol(WebSocketServerProtocol):
def onConnect(self, request):
print("Client connecting: {0}".format(request.peer))
def onOpen(self):
print("WebSocket connection open.")
def onMessage(self, payload, isBinary):
print("Text message received: {0}".format(payload.decode('utf8')))
# echo back message verbatim
# self.sendMessage(payload, isBinary)
def onClose(self, wasClean, code, reason):
print("WebSocket connection closed: {0}".format(reason))
def StopWebsocketServer():
PrintAndLog_FuncNameHeader("Begin")
reactor.stop()
PrintAndLog_FuncNameHeader("End")
if __name__ == '__main__':
# TODO remove the logging that came in the example
log.startLogging(sys.stdout)
factory = WebSocketServerFactory("ws://127.0.0.1:8080")
factory.protocol = MyServerProtocol
# note to self: if using putChild, the child must be bytes...
reactor.listenTCP(Port_ws, factory)
reactor.run()
解决方案使用@Jean-Paul Calderone的答案:
import os
import signal
os.kill(os.getpid(), signal.SIGKILL)
我有一个外部python脚本,它向我的每个python脚本发送一个终止信号。终止信号只是每个脚本都知道要查找的文件的存在。一旦该终止信号出现,每个脚本都知道它还有x秒就会被终止。通过这种方式,他们有几秒钟的时间优雅地完成某件事。
twisted.internet.reactor.stop()
是导致反应堆关闭的方式。这通常是导致基于Twisted的程序退出的原因(当然,如果程序在反应堆关闭后做更多的事情,也不一定必须退出,但这并不常见(。
然而,听起来你不想知道在进程内运行什么Python代码来结束它。你想知道一些其他进程可以对基于Twisted的进程做什么来退出它。您给出了两种解决方案-KeyboardInterrupt和SIGKILL。你没有提到为什么这两种解决方案都不合适。他们对我来说似乎很好。
如果您对SIGKILL感到不舒服(毕竟,您的程序可能会因多种原因而过早消亡,您应该做好应对准备(,那么您可能忽略了KeyboardInterrupt,它只是默认SIGINT处理程序在Python程序中引发的异常。
如果您将SIGINT发送到基于Twisted的进程,那么在正常使用下,这将停止反应堆并允许有序关闭。