Nginx的配置文件路径,nginx安装路径

Nginx的配置文件路径,nginx安装路径1、通过apt-get安装Nginx的配置文件在/etc/nginx/nginx.conf目录下。注:通过源码,tar解压,执行sbin/configure安装一般在/usr/local/nginx下2、查找nginx安装路径(1)通过查看监听进程号,然后查看该进程,查看安装路径#netstat-tnlp|grepnginxtcp0…

1、通过apt-get 安装 Nginx的配置文件在/etc/nginx/nginx.conf目录下。

注:通过源码,tar 解压,执行sbin/configure安装一般在/usr/local/nginx下

 

2、查找nginx安装路径

(1)通过查看监听进程号,然后查看该进程,查看安装路径

# netstat -tnlp | grep nginx

tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      1215/nginx

tcp6       0      0 :::80                   :::*                    LISTEN      1215/nginx

 

# ps -aux | grep 1215

root       1215  0.0  0.2  85896  2824 ?        Ss   10:09   0:00 nginx: master process /usr/sbin/nginx

root       2053  0.0  0.2  14084  2572 pts/0    S+   10:58   0:00 grep –color=auto 1215

 

(2)查看nginx是以哪个config启动的

# ps -ef | grep nginx

root       1215      1  0 10:09 ?        00:00:00 nginx: master process /usr/sbin/nginx

www-data   1216   1215  0 10:09 ?        00:00:00 nginx: worker process

www-data   1217   1215  0 10:09 ?        00:00:00 nginx: worker process

www-data   1218   1215  0 10:09 ?        00:00:00 nginx: worker process

www-data   1219   1215  0 10:09 ?        00:00:00 nginx: worker process

root       2049   2009  0 10:57 pts/0    00:00:00 grep –color=auto nginx

 

(3) 查看nginx是否安装以及路径

# find / |grep nginx.conf

/etc/nginx/nginx.conf

/etc/nginx/conf.d

/home/xxx/program_tar/nginx-1.2.2/conf/nginx.conf

今天的文章Nginx的配置文件路径,nginx安装路径分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/11695.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注