记录日常点点滴滴,欢迎来到我的小站。

0%

Linux 查找指定程序(nginx)的3种方法

最常用的方法Whereis

在Shell环境下,直接输入whereis nginx就可以查到nginx的安装目录

Wich大法

在Shell环境下,直接输入which nginx也可以查到nginx的安装目录

进程ID查找法

在Shell环境下输入以下命令
ps -aux | grep nginx

一般会得到以下结果

1
2
3
4
5
root         724  0.0  0.1  57892  1640 ?        Ss   Oct13   0:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
www-data 725 0.0 0.7 59200 7688 ? S Oct13 0:05 nginx: worker process
www-data 726 0.0 0.6 58996 6656 ? S Oct13 0:00 nginx: worker process
root 40632 0.0 0.0 5416 852 pts/0 R+ 09:08 0:00 grep --color=auto nginx

再输入ls -l /proc/725/exe,就可以找到指定的位置了。

截图如下
Linux查找程序