一、将nginx配置到系统服务
1、在 /usr/lib/systemd/system
目录下添加nginx.service,内容如下
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| [Unit] Description=nginx web service Documentation=http://nginx.org/en/docs/ After=network.target
[Service] Type=forking PIDFile=/usr/local/nginx/logs/nginx.pid ExecStartPre=/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf ExecStart=/usr/local/nginx/sbin/nginx ExecReload=/usr/local/nginx/sbin/nginx -s reload ExecStop=/usr/local/nginx/sbin/nginx -s stop PrivateTmp=true
[Install] WantedBy=default.target
|
2、添加完成后如果权限有问题需要进行权限设置
1
| chmod 755 /usr/lib/systemd/system/nginx.service
|
3、使用系统命令来操作Nginx服务
二、将nginx命令配置到系统环境
1、修改 /etc/profile
文件
1 2 3
| vim /etc/profile 在最后一行添加 export PATH=$PATH:/usr/local/nginx/sbin
|
2、使配置立即生效