如何在linux中查看nginx、apache、php、mysql設定檔路徑了,如果你接收一個別人配置過的環境,但沒留下相關文件。這時該怎麼判斷找到正確的載入檔案路徑了。可以透過以下來判斷 。
1、判斷apache
先執行指令找到httpd路徑
ps aux | grep httpd
如httpd路徑為/usr/local/apache/ bin/httpd
然後執行以下命令
/usr/local/apache/bin/httpd -V | grep “SERVER_CONFIG_FILE”
即可找到編譯時載入的設定檔路徑httpd.conf
- V 參數可以看到編譯時配置的參數
2、判斷nginx
首先執行指令找到nginx路徑
ps aux | grep nginx
如nginx路徑為
/usr/local/nginx/sbin/nginx
#然後執行以下指令
/usr/local/nginx/sbin/nginx -V
預設放在安裝目錄下conf/nginx.conf
3、判斷mysql
先執行指令找到mysql路徑
ps aux | grep mysqld
如mysqld路徑為
/usr/bin/mysql
然後執行以下指令
/usr/bin/mysql –verbose –help | grep -A 1 'Default options'
或
/usr/bin/mysql – print-defaults
4、判斷php載入的設定檔路徑
(1)、可透過php函數phpinfo來查看,寫個文件,然後用網址訪問一下,查找「Loaded Configuration File」對應的值即為php載入的設定檔
(2)、如果是nginx+php配置,也可以透過尋找php執行路徑
ps aux | grep php
如,路徑為/usr/local/nginx/sbin/php-fpm
然後執行以下指令
/usr/local/nginx/sbin/php-fpm -i | grep “Loaded Configuration File”
即可看到php載入的設定檔
(3)、如果是apache+mod_php配置,也可以在apache設定檔中查看載入的php.ini路徑。如PHPIniDir “/usr/local/apache/conf/php.ini”
當然也有簡單的方法,就是透過find來搜尋
如
find / -name nginx.conf
find / -name php.ini
find / -name my.cnf
find / -name httpd.conf
##這種找法要經過刷選才行
原文:http://www.phper163.com/archives/368
如何在linux中查看nginx、 apache、php、mysql設定檔路徑了,如果你接收一個別人配置過的環境,但沒留下相關文件。這時該怎麼判斷找到正確的載入檔案路徑了。可以透過以下來判斷1、判斷apache
先執行指令找到httpd路徑
ps aux | grep httpd
如httpd路徑為/usr/local/apache/bin/httpd
然後執行以下指令
/usr/local/apache/bin/httpd -V | grep “SERVER_CONFIG_FILE”
即可找到編譯時載入的設定檔路徑httpd.conf
-V 參數可以看到編譯時配置的參數
2、判斷nginx 先執行指令找到nginx路徑
ps aux | grep nginx
如nginx路徑為
/usr/local /nginx/sbin/nginx
然後執行以下指令/usr/local/nginx/sbin/nginx -V
預設放在安裝目錄下conf/nginx. conf
3、判斷mysql
先執行指令找到mysql路徑
ps aux | grep mysqld
如mysqld路徑為
/usr/bin/mysql
#然後執行以下指令/usr/bin/mysql –verbose –help | grep -A 1 'Default options'
或
/usr/bin/mysql –print-defaults
#
4、判斷php載入的設定檔路徑
(1)、可透過php函數phpinfo來查看,寫個文件,然後用網址存取一下,查找「Loaded Configuration File」對應的值即為php載入的設定檔
(2)、如果是nginx+php配置,也可以透過查找php執行路徑
ps aux | grep php
如,路徑為/usr/local/nginx/sbin /php-fpm
然後執行以下指令
/usr/local/nginx/sbin/php-fpm -i | grep “Loaded Configuration File”
即可看到php載入的設定檔
(3)、如果是apache+mod_php配置,也可以在apache設定檔中查看載入的php.ini路徑。如PHPIniDir “/usr/local/apache/conf/php.ini”
當然也有簡單的方法,就是透過find來搜尋
如
find / -name nginx.conf
find / -name php.ini
find / -name my.cnf
find / -name httpd.conf
##這種找法要經過刷選才行
以上是linux中查看nginx、apache、php、mysql設定檔路徑實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!