如何开启mysql的日志?
mysql有以下几种日志: <BR> 错误日志: -log-err <BR> 查询日志: -log <BR> 慢查询日志: -log-slow-queries <BR> 更新日志: -log-update <BR> 二进制日志: -log-bin <BR> <BR> 在mysql的安装目录下,打开my.ini,在后面加上上面的参数,保存后重启mysql服务就行了。 <BR> 例如: <BR> #Enter a name for the binary log. Otherwise a default name will be used. <BR> #log-bin= <BR> #Enter a name for the query log file. Otherwise a default name will be used. <BR> #log= <BR> #Enter a name for the error log file. Otherwise a default name will be used. <BR> log-error= <BR> #Enter a name for the update log file. Otherwise a default name will be used. <BR> #log-update= <BR> <BR> 上面只开启了错误日志,要开其他的日志就把前面的“#”去掉。
页:
[1]