mysql 常见的几种日志设置
#转自:?http://database.51cto.com/art/201010/229691.htm?
?
MySQL日志是我们需要掌握的知识,下面就为您介绍几个最常见的MySQL日志类型,如果您对MySQL日志方面感兴趣的话,不妨一看。
1.错误日志?? 记录启动、运行或停止mysqld时出现的问题。
My.ini配置信息:
#Enter a name for the error log file.?? Otherwise a default name will be used.
#log-error=d:/mysql_log_err.txt
2.查询日志??? 记录建立的客户端连接和执行的语句。
My.ini配置信息:
#Enter a name for the query log file. Otherwise a default name will be used.
#log=d:/mysql_log.txt
3.更新日志?? 记录更改数据的语句。不赞成使用该日志。
My.ini配置信息:
#Enter a name for the update log file. Otherwise a default name will be used.
#log-update=d:/mysql_log_update.txt
4.二进制日志??? 记录所有更改数据的语句。还用于复制。
My.ini配置信息:
#Enter a name for the binary log. Otherwise a default name will be used.
#log-bin=d:/mysql_log_bin
5.慢日志??? 记录所有执行时间超过long_query_time秒的所有查询或不使用索引的查询。
My.ini配置信息:
#Enter a name for the slow query log file. Otherwise a default name will be used.
#long_query_time =1
#log-slow-queries= d:/mysql_log_slow.txt