這篇文章給大家介紹如何查找nginx配置文件的位置,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
邱縣ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書未來(lái)市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18982081108(備注:SSL證書合作)期待與您的合作!
這里有幾種方法:
1、如果程序在運(yùn)行中
ps -ef | grep nginx # ps -ef | grep nginx root 29514 1 0 Mar01 ? 00:00:00 nginx: master process /usr/sbin/nginx -g daemon on; master_process on; www-data 29515 29514 0 Mar01 ? 00:00:00 nginx: worker process root 30276 28948 0 09:36 pts/1 00:00:00 grep --color=auto nginx
通常是 /usr/sbin/nginx
2、程序并沒(méi)有運(yùn)行
查看軟件安裝路徑
whereis nginx
查詢運(yùn)行文件所在路徑
which nginx
當(dāng)然還有另外的查詢方法
rpm包安裝的,可以用rpm -qa | grep “軟件或者包的名字”查詢;
yum方法安裝的,可以用yum list installed查找;
獲取配置文件位置
通過(guò)上面的一些方法,找到了nginx可執(zhí)行文件的路徑,就可以通過(guò)Nginx自身的功能找到配置文件的位置了。
# /usr/sbin/nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful
關(guān)于如何查找nginx配置文件的位置就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。