php慢查詢日志和錯誤日志使用詳解
前言
作為一名程序員,比碼代碼還重要那麼一點點的東西就是日志的分析和查詢。下面列出常見日志及設置方法。
php-fpm 慢日志
php慢日志需要在php-fpm.conf設置,如果使用源碼包安裝默認請執行下面命令
cp php-fpm.conf.default php-fpm.conf
默認通過源碼包編譯安裝php目錄應在
/usr/local/php
目錄下,如果你通過yum或者其他方式安裝,不清楚或不知道php具體安裝目錄,可以使用
find / -name php-fpm.conf
or
php -i | grep Path ------------------------------------------ [root@xxxx etc]# php -i | grep Path Configuration File (php.ini) Path => /usr/local/php/etc XPath Support => enabled Path to sendmail => /usr/sbin/sendmail -t -i [root@xxxx etc]#
開啟慢查詢日志
舊的版本是在php-fpm.conf設置 (實際是我忘記瞭哪個版本),php7.x版本源碼包編譯後需要www.conf修改慢查詢配置
vim /usr/local/php/etc/php-fpm.d/www.conf
不過配置項都一樣的,如果你在php-fpm.conf找不到,就去他的同級目錄php-fpm.d下面找下吧。
; The log file for slow requests ; Default Value: not set ; Note: slowlog is mandatory if request_slowlog_timeout is set ;slowlog = log/$pool.log.slow ; The timeout for serving a single request after which a PHP backtrace will be ; dumped to the 'slowlog' file. A value of '0s' means 'off'. ; Available units: s(econds)(default), m(inutes), h(ours), or d(ays) ; Default Value: 0 ;request_slowlog_timeout = 0
slowlog 設置慢查詢日志的生成目錄
request_slowlog_timeout 設置慢查詢的標準時間(打開此配置就相當於開啟瞭慢查詢日志),配置以秒為單位,一般設置3s。
php-error 錯誤日志
在生產環境中是不允許php報錯的,就算報錯也是白屏或者500,所以在生產環境中的日志收集是非常重要的。
開啟錯誤日志
一般情況下,php錯誤日志的配置都在php.ini文件中
/usr/local/php/etc/php.ini --------------------------- error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT display_errors = Off log_errors = On ; Log errors to specified file. PHP's default behavior is to leave this value ; empty. ; http://php.net/error-log ; Example: ;error_log = php_errors.log ; Log errors to syslog (Event Log on Windows). ;error_log = syslog
error_log 錯誤日志的生成目錄
error_reporting 生產環境錯誤級別應全開
display_errors 在頁面上不顯示錯誤
log_errors 開啟錯誤日志
最終的結果是
error_log = /var/log/php_error.log display_errors = Off error_reporting = E_ALL log_errors = On
到此這篇關於php慢查詢日志和錯誤日志使用詳解的文章就介紹到這瞭,更多相關php慢查詢日志和錯誤日志內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!