如何使用Gunicorn停止/重启龙卷风服务器?

时间:2018-10-22 08:31:09

标签: python tornado gunicorn

我正在使用gunicorn通过以下命令启动龙卷风应用程序。 Reference

 gunicorn -k tornado sample:app -b 0.0.0.0:8002 -w 2 -p server.pid -D

代码示例sample.py

from tornado.web import Application, RequestHandler


class MainHandler(RequestHandler):
    def get(self):
        self.write("Hello, world")


app = Application([
   (r"/", MainHandler)
])

如何在更新代码后正常停止或重启gunicorn?

0 个答案:

没有答案