ps -ef | grep nginx 查看 nginx 进程,第二列为 pid
kill -9 pid 杀掉 nginx 进程
nginx 启动nginx
nginx -s stop 立即停止nginx,不保存相关信息
nginx -s quit 正常退出nginx,并保存相关信息
killall nginx 杀死所有nginx进程
nginx -s reload 修改配置文件后,以优雅的方式重启Nginx
nginx -s reopen 重启Nginx
nginx -t 检测配置文件
nginx -V 查看 nginx 版本
网友评论