linux cent7 uwsgi自启动 亲测有效!!

cent7下自启
1、找到uwsgi位置

whereis uwsgi

得到:/usr/local/python3/bin/uwsgi

2.创建配置文件

cd /etc/systemd/system/ 

touch server_uwsgi.service

vi server_uwsgi.service

写入以下:

[Unit]
Description=HTTP Interface Server
After=syslog.target
 
[Service]
KillSignal=SIGQUIT
ExecStart=/usr/local/python3/bin/uwsgi --ini /root/hnjcy/website/uwsgi.ini
#注意,重点:这个就是刚才第一步得到的uwsgi的路径,后面这个uwsgi.ini是你自己项目的路径(这行可以删掉)
Restart=always
Type=notify
NotifyAccess=all
StandardError=syslog
 
[Install]
WantedBy=multi-user.target

3.如果uwsgi配置文件中配置了 daemonize=/path/uwsgi.log (uwsgi服务以守护进程运行)
会导致sytemctl启动时多次重启而导致启动失败
需改为 logto=/path/uwsgi.log

  1. 将该服务加入到systemd中
systemctl enable /etc/systemd/system/server_uwsgi.service

然后就可以通过systemctl来控制服务的启停

systemctl stop server_uwsgi.service 关闭uwsgi服务
systemctl start server_uwsgi.service 开启uwsgi服务
systemctl restart server_uwsgi.service 重启uwsgi服务

感谢链接:https://blog.csdn.net/sinat_41292836/article/details/103764842
不过他没有说明uwsgi的路径,可能会影响一部分人导致错误

你可能感兴趣的:(数据库,mysql,linux,nginx,centos)