关于Linux开机自动启动服务uwsgi. nginx。 我在/etc/rc.local中增加了...
发布网友
发布时间:2022-04-28 21:34
我来回答
共3个回答
热心网友
时间:2022-04-09 03:18
你需要写uwsgi命令的绝对路径,例如/usr/bin/uwsgi -x /django.xml
方法:
1.找到uwsgi文件。
locate uwsgi
或
find / -name 'uwsgi'
2.写绝对路径到rc.local文件中
如果你对linux命令熟悉且uwsgi在你的环境变量$PATH目录下的话,你可以在/etc/rc.d/rc.local中增加
source `which uwsgi` -x /django.xml
`是反引号
你可以搜索source
热心网友
时间:2022-04-09 04:36
nginx是源码安装的吗?你的系统是什么centos6还是7
复制下面代码自己修改确定nginx安装位置,到/etc/init.d/nginx
#!/bin/bash
# chkconfig: - 99 98
#description: nginx is a World Wide Web server. It is used to serve
nginx="/usr/local/nginx/sbin/nginx"
nginxpid="/usr/local/nginx/nginx.pid"
php="/usr/local/php/sbin/php-fpm"
phppid="/usr/local/php/var/run/php-fpm.pid"
case $1 in
start)
$nginx
$php
echo "nginx php-fpm up"
;;
stop)
kill -s QUIT $(cat nginxpid)
kill -s QUIT $(cat phppid)
echo "nginx php done"
;;
restart)
$0 stop &>/dev/null
$0 start &>/dev/null
echo " restart is ok"
;;
reload)
kill -s HUP $(cat $stop)
echo "reload ok"
;;
*)
echo "error"
echo "start|stop|restart|reload"
esac
6.5版本的话启动service nginx start
开机启动chkconfig nginx on
7.0的话 systemctl start nginx
systemctl enable nginx
然后就可以启动啦!纯手打!
热心网友
时间:2022-04-09 06:10
uwsgi 这个命令用绝对路径(完整路径),不要直接一个uwsgi