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版本源码包编译后需要修改慢查询设置

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. ; ; 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慢查询日志和错误日志内容请搜索剧本之家以前的文章或继承欣赏下面的相关文章但愿各人今后多多支持剧本之家!

您大概感乐趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsdspp.html