mysql日志的使用命令 mysql有以下幾種日志: 錯誤日志: -log-err 查詢日志: -log 慢查詢日志: -log-slow-queries 更新日志: -log-update 二進制日志: -log-bin 在mysql的安裝目錄下,打開my.ini,在後面加上上面的參數,保存後重啟mysql服務就行了。 例如: #Enter a name for the binary log. Otherwise a default name will be used. #log-bin= #Enter a name for the query log file. Otherwise a default name will be used. #log= #Enter a name for the error log file. Otherwise a default name will be used. log-error= #Enter a name for the update log file. Otherwise a default name will be used. #log-update= 上面只開啟了錯誤日志,要開其他的日志就把前面的“#”去掉 查看命令: ①show variables like 'log_%';查看所有的log命令 ②show variables like 'log_bin';查看具體的log命令