nginx 相关服务器操作常用命令

2022-09-19  本文已影响0人  日不落000

服务器操作相关命令

nginx -s reload
nginx
nginx -s stop # 停止
ps -ef|grep nginx #查看master进程ID
ll /proc/2030/exe #(2030为master进程ID)

示例:

[root@localhost ~]# ps -ef|grep nginx
root      8951  5986  0 10:51 pts/0    00:00:00 grep --color=auto nginx
root     11026     1  0 9月19 ?       00:00:00 nginx: master process ./sbin/nginx
nobody   25071 11026  0 9月19 ?       00:00:11 nginx: worker process
nobody   25072 11026  0 9月19 ?       00:00:10 nginx: worker process
[root@localhost ~]# ll /proc/11026/exe
lrwxrwxrwx. 1 root root 0 9月  19 16:56 /proc/11026/exe -> /usr/local/webserver/nginx/sbin/nginx

上一篇下一篇

猜你喜欢

热点阅读