作为一名程序员,比码代码还重要那么一点点的东西就是日志的分析和查询。下面列出常见日志及设置方法。
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 PathConfiguration file (PHP.ini) Path => /usr/local/PHP/etcXPath Support => enabledPath 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 = 0slowlog 设置慢查询日志的生成目录request_slowlog_timeout 设置慢查询的标准时间(打开此配置就相当于开启了慢查询日志),配置以秒为单位,一般设置3s。
推荐学习:《PHP视频教程》
PHP-error 错误日志在生产环境中是不允许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.; http://PHP.net/error-log; Example:;error_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致谢
感谢你看到这里,日志 *** 作与分析的相关文章后面我还会写一些,希望可以帮助到你。谢谢
代码多变,初心不变
更多编程相关知识,请访问:编程视频!! 总结
以上是编程之家为你收集整理的聊聊PHP开发中需要了解的两种日志全部内容,希望文章能够帮你解决聊聊PHP开发中需要了解的两种日志所遇到的程序开发问题。
如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)