如何终止作为服务运行的Flask应用程序?

由于能够在Windows中将Python脚本作为服务运行,因此我能够使Flask应用程序作为服务运行。如果可能的话,怎么办?,但是要停止它,我做不到。我必须在任务管理器中终止该过程。

这是我的run.py,我可以通过run.py install将其变成服务:

from app import app

from multiprocessing import Process

import win32serviceutil

import win32service

import win32event

import servicemanager

import socket

class AppServerSvc (win32serviceutil.ServiceFramework):

_svc_name_ = "CCApp"

_svc_display_name_ = "CC App"

def __init__(self,args):

win32serviceutil.ServiceFramework.__init__(self,args)

self.hWaitStop = win32event.CreateEvent(None,0,0,None)

socket.setdefaulttimeout(60)

def SvcStop(self):

self.ReportServiceStatus(win32service.SERVICE_STOP_PENDING)

win32event.SetEvent(self.hWaitStop)

server.terminate()

server.join()

def SvcDoRun(self):

servicemanager.LogMsg(servicemanager.EVENTLOG_INFORMATION_TYPE,

servicemanager.PYS_SERVICE_STARTED,

(self._svc_name_,''))

self.main()

def main(self):

server = Process(app.run(host = '192.168.1.6'))

server.start()

if __name__ == '__main__':

win32serviceutil.HandleCommandLine(AppServerSvc)

我从这篇博文中获得了流程内容:http :

//librelist.com/browser/flask/2011/1/10/start-stop-

flask/#a235e60dcaebaa1e134271e029f801fe,但不幸的是,它也不起作用。

事件查看器中的日志文件显示未定义全局变量“服务器”。但是,我已经使服务器成为全局变量,但它仍然给我同样的错误。

回答:

我建议您使用http://supervisord.org/。实际上在Windows中不起作用,但是使用Cygwin可以像在Linux中一样运行超级用户,包括以服务形式运行。

对于安装Supervisord:http://codingdict.com/questions/164007

安装后,您必须配置该应用程序,这里是一个示例:http : //flaviusim.com/blog/Deploying-Flask-with-

nginx-uWSGI-and-Supervisor/(不必将Nginx用于Supervisor的配置就足够了)

以上是 如何终止作为服务运行的Flask应用程序? 的全部内容, 来源链接: utcz.com/qa/428535.html

回到顶部