nginx 普通用户启动

安装sudo

#yum install -y sudo

#chmod 777 /etc/sudoer

vi /etc/sudoer

webapp All=(root) NOPASSWD:/usr/local/nginx-1.8.1/sbin/nginx #启动

webapp All=(root) NOPASSWD:/usr/local/nginx-1.8.1/sbin/nginx -t #检测语法

webapp All=(root) NOPASSWD:/usr/local/nginx-1.8.1/sbin/nginx -s stop#停止

webapp All=(root) NOPASSWD:/usr/local/nginx-1.8.1/sbin/nginx- s reload#加载

#chmod 440 /etc/sudoer

[webapp@webapp129 conf]cd /usr/local/nginx-1.8.1/conf/

[webapp@webapp129 conf]vim stopNginx.sh

sudo /usr/local/nginx-1.8.1/sbin/nginx -s reload

[webapp@webapp129 conf]vim syntaxNginx.sh

sudo /usr/local/nginx-1.8.1/sbin/nginx -t

 [webapp@webapp129 conf]vim startNginx.sh

sudo /usr/local/nginx-1.8.1/sbin/nginx   

[webapp@webapp129 conf]cd /usr/local/nginx-1.8.1

[root@webapp129 nginx-1.8.1]chmod 777 -R conf

相关推荐