MYSQL啟用日誌和檢視日誌

shwenwen發表於2010-11-29

利用mysqlbinlog.exe檢視二進位制日誌

[@more@]


是否啟用了日誌
mysql>show variables like 'log%';

怎樣知道當前的日誌
mysql> show master status;

看二進位制日誌檔案用mysqlbinlog,mysqlbinlog.exe是安裝好mysql後在bin目錄中自帶的檢視工具。
shell>mysqlbinlog mail-bin.000001
或者shell>mysqlbinlog mail-bin.000001 | tail

Windows 下用類似的命令。


mysql有以下幾種日誌:
錯誤日誌: -log-err
查詢日誌: -log
慢查詢日誌: -log-slow-queries
更新日誌: -log-update
二進位制日誌: -log-bin

在mysql的安裝目錄下,開啟my.ini,在後面加上上面的引數,儲存後重啟mysql服務就行了。
例如:
#Enter a name for the error log file. Otherwise a default name will be used.
log-error=
#Enter a name for the query log file. Otherwise a default name will be used.
#log=
#Enter a name for the slow query log file. Otherwise a default name will be used.
#log-slow-queries=
#Enter a name for the update log file. Otherwise a default name will be used.
#log-update=
#Enter a name for the binary log. Otherwise a default name will be used.
#log-bin=
上面只開啟了錯誤日誌,要開其他的日誌就把前面的“#”去掉。

long_query_time =1 --是指執行超過多久的sql會被log下來,這裡是1秒

log-slow-queries=slowqueris.log --將查詢返回較慢的語句進行記錄

log-queries-not-using-indexes = nouseindex.log --就是字面意思,log下來沒有使用索引的query

log=mylog.log --對所有執行語句進行記錄

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/143526/viewspace-1042295/,如需轉載,請註明出處,否則將追究法律責任。

相關文章