欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

腾讯云服务器 flask项目 傻瓜式部署全流程 (五)

程序员文章站 2022-06-11 11:29:57
...

                                       第五部分:supervisor 安装与配置

一、supervisor 安装

1、退出虚拟环境

deactivate

2、python2环境下安装pip

yum install python-pip -y

3、安装supervisor

python -m pip install supervisor

二、配置文件

1、配置导入

echo_supervisord_conf  >  /etc/supervisord.conf

2、编辑配置文件

vim /etc/supervisord.conf

3、添加配置内容

文件拖到底部粘贴配置内容:

[program:myblog_fk(文件名)]
command = /home/envf/venv/bin/uwsgi --ini  /home/conff/uwsgi.ini
directory =  /home/www/myblog_fk(文件名)
startsecs = 0
stopwaitsecs=0
autostart=true
autorestart=true

保存退出

三、启动supervisor

1、进入虚拟环境

cd /home/envf/venv
source bin/active
重启nginx
systemctl restart nginx.service

2、启动supervisord

supervisord  -c /etc/supervisord.conf

3、访问IP地址查看。

参考网站:https://zhuanlan.zhihu.com/p/47728105

                  https://zhuanlan.zhihu.com/p/46679165