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

服务器操作相关命令

  • 重新加载 Nginx 配置文件
nginx -s reload
  • 启动停止nginx
nginx
nginx -s stop # 停止
  • 查看Nginx是否运行,以及部署目录
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

你可能感兴趣的:(nginx 相关服务器操作常用命令)