/sbin/nginx -s reload
systemctl stop firewalld
firewall-cmd --state
whereis nginx
1.停止Nginx服务的四种方法
从容停止服务
这种方法较stop相比就比较温和一些了,需要进程完成当前工作后再停止。
nginx -s quit
立即停止服务
这种方法比较强硬,无论进程是否在工作,都直接停止进程。
nginx -s stop
systemctl 停止
systemctl属于Linux命令
systemctl stop nginx.service
killall 方法杀死进程
直接杀死进程,在上面无效的情况下使用,态度强硬,简单粗暴!
killall nginx
2.启动Nginx
nginx直接启动
nginx
1
systemctl命令启动
systemctl start nginx.service
1
3.查看启动后记录
ps aux | grep nginx
1
4.重启Nginx服务
systemctl restart nginx.service
1
5.重新载入配置文件
当有系统配置文件有修改,用此命令,建议不要停止再重启,以防报错!
nginx -s reload
1
6.查看端口号
netstat -tlnp