本文实例讲述了php程序员必须知道的两种日志。分享给大家供大家参考,具体如下:
作为一名程序员,比码代码还重要那么一点点的东西就是日志的分析和查询。下面列出常见日志及设置方法。
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 pathconfiguratio小学毕业n file (php.ini) path => /usr/local/php/etcxpath support => enabledpath to ndmail => /平安夜说说配图usr/sbin/ndmail -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 t; note: slowlog is 白居易主张mandatory if request_slowlog_timeout is t;slowlog = log/$pool.log.slow; the timeout for rving 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 = 0slowlog 设置慢查询日志的生成目录request_slowlog_timeout 设置慢查询的标准时间(打开此配置就相当于开启了慢查询日志),配置以秒为单位,一般设置3s。
在生产环境中是不允许php报错的,就算报错也是白屏或者500,所以在生产环境中的日志收集是非常重要的。
一般情况下,php错误日志的配置都在php.ini文件中
/usr/local/php/etc/php.ini---------------------------error_reporting = e_all & ~e_deprecated & ~e_strictdisplay_errors = offlog_errors = on; log errors to specified file. php's default behavior is to leave this value; empty.; /d/file/titlepic/manual-lookup.php example:;er平行志愿ror_log = php_大学英语四六级成绩查询errors.log; log errors to syslog (event log on windows).;error_log = syslogerror_log 错误日志的生成目录error_reporting 生产环境错误级别应全开display_errors 在页面上不显示错误log_errors 开启错误日志
最终的结果是
error_log = /var/log/php_error.logdisplay_errors = offerror_reporting = e_alllog_errors = on
本文发布于:2023-04-08 18:59:02,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/b004436ac04bbc35c36b2ba93fbe4d1a.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHP程序员必须知道的两种日志实例分析.doc
本文 PDF 下载地址:PHP程序员必须知道的两种日志实例分析.pdf
留言与评论(共有 0 条评论) |