nginx 操作,启动、停止、重启

2016-08-17 17:05:59 13306

查看nginx进程看看有没有启动,并可以查看进程ID

Shell代码  收藏代码

  1. [root@ uu]# ps -ef|grep nginx  

  2. root     20538     1  0 13:51 ?        00:00:00 nginx: master process /opt/nginx/sbin/nginx  

  3. root     20539 20538  0 13:51 ?        00:00:00 nginx: worker process  

  4. root     20540 20538  0 13:51 ?        00:00:00 nginx: worker process  

  5. root     24132     1  0 15:03 ?        00:00:00 nginx: master process sbin/nginx  

  6. nobody   24133 24132  0 15:03 ?        00:00:00 nginx: worker process  

  7. root     24552 20113  0 15:12 pts/2    00:00:00 grep nginx  

  8. [root@ uu]#   

 
停止nginx,其实就是杀掉进程,但是要注意不能用kill -9 进程id,因为nginx启动时有子进程,所以要用下面方式杀死

Shell代码  收藏代码

  1. [root@ uu]# ps -ef|grep nginx  

  2. root     20538     1  0 13:51 ?        00:00:00 nginx: master process /opt/nginx/sbin/nginx  

  3. root     20539 20538  0 13:51 ?        00:00:00 nginx: worker process  

  4. root     20540 20538  0 13:51 ?        00:00:00 nginx: worker process  

  5. root     20544     1  0 13:51 ?        00:00:00 nginx: master process /opt/nginxcs/sbin/nginx  

  6. nobody   24052 20544  0 15:02 ?        00:00:00 nginx: worker process    

  7. root     24066 20113  0 15:02 pts/2    00:00:00 grep nginx  

  8. [root@ uu ]# kill 20544  

  9. [root@ uu]# ps -ef|grep nginx  

  10. root     20538     1  0 13:51 ?        00:00:00 nginx: master process /opt/nginx/sbin/nginx  

  11. root     20539 20538  0 13:51 ?        00:00:00 nginx: worker process  

  12. root     20540 20538  0 13:51 ?        00:00:00 nginx: worker process  

  13. root     24104 20113  0 15:03 pts/2    00:00:00 grep nginx  

  14.   


启动nginx

Shell代码  收藏代码

  1. [root@ uu]# ps -ef|grep nginx  

  2. root     20538     1  0 13:51 ?        00:00:00 nginx: master process /opt/nginx/sbin/nginx  

  3. root     20539 20538  0 13:51 ?        00:00:00 nginx: worker process  

  4. root     20540 20538  0 13:51 ?        00:00:00 nginx: worker process  

  5. root     24104 20113  0 15:03 pts/2    00:00:00 grep nginx  

  6. [root@ uu]# sbin/nginx   

  7. [root@ uu]# ps -ef|grep nginx  

  8. root     20538     1  0 13:51 ?        00:00:00 nginx: master process /opt/nginx/sbin/nginx  

  9. root     20539 20538  0 13:51 ?        00:00:00 nginx: worker process  

  10. root     20540 20538  0 13:51 ?        00:00:00 nginx: worker process  

  11. root     24132     1  0 15:03 ?        00:00:00 nginx: master process sbin/nginx  

  12. nobody   24133 24132  0 15:03 ?        00:00:00 nginx: worker process  

  13. root     24139 20113  0 15:03 pts/2    00:00:00 grep nginx  

  14.   

 






提交成功!非常感谢您的反馈,我们会继续努力做到更好!

这条文档是否有帮助解决问题?

非常抱歉未能帮助到您。为了给您提供更好的服务,我们很需要您进一步的反馈信息:

在文档使用中是否遇到以下问题: