企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
### **A、查看安装的位置** whereis[nginx](https://so.csdn.net/so/search?q=nginx&spm=1001.2101.3001.7020) ### B. 通过相应的进程ID(比如:4562)查询当前运行的nginx路径 ll /proc/4562/exe 1\. 在默认安装位置下查看,大多数一般会安装在默认位置下 /usr/local/[openresty](https://so.csdn.net/so/search?q=openresty&spm=1001.2101.3001.7020)/nginx 或/usr/local/nginx 2\. 查看nginx运行进程,mast process 后面一般是nginx 的安装目录 ps -aux|[grep](https://so.csdn.net/so/search?q=grep&spm=1001.2101.3001.7020)nginx ![](https://img-blog.csdnimg.cn/20210319153249384.png)   3\. 查看nginx运行进程,执行ls -l /proc/进程号/exe ,然后会打印出安装/运行位置 ps -aux|grep nginx   ls -l /proc/进程号/exe  ![](https://img-blog.csdnimg.cn/20210319153120723.png)