美文网首页
centos Python3+Flask+uwsgi部署

centos Python3+Flask+uwsgi部署

作者: 戒灵 | 来源:发表于2021-11-26 10:17 被阅读0次

    转自:https://www.cnblogs.com/TTyb/p/9554549.html

    我的网页的路径为:

    /home/APIParse
    /home/APIParse/htmlWeb.py
    ...
    
    
    image

    在当前路径下新建uwsgiconfig.ini,写入如下信息

    [uwsgi]
    # htmlWeb.py文件所在目录
    chdir           = /home/APIParse
    
    callable = app
    
    # flask文件名
    wsgi-file= htmlWeb.py
    
    # 进程数
    processes       = 5
    
    # 使用3993端口
    http = 0.0.0.0:3993
    
    # 日志输出目录
    daemonize = /home/APIParse/flask.log
    
    pidfile = project-master.pid
    
    

    完成保存退出,启动命令并查看进程:

    # 启动命令
    uwsgi uwsgi.ini
     # 查看进程是否启动成功
    ps -ef | grep uwsgi
    
    
    image

    如果想要停止uwsgi,就可以杀死所有:

    killall -9 uwsgi
    

    相关文章

      网友评论

          本文标题:centos Python3+Flask+uwsgi部署

          本文链接:https://www.haomeiwen.com/subject/gicztrtx.html