查看是否啟用了日志
復制代碼 代碼如下:
mysql>show variables like 'log_bin';
怎樣知道當前的日志
復制代碼 代碼如下:
mysql> show master status;
展示二進制日志數目
復制代碼 代碼如下:
mysql> show master logs;
看二進制日志文件用mysqlbinlog
復制代碼 代碼如下:
shell>mysqlbinlog mail-bin.000001
或者
復制代碼 代碼如下:
shell>mysqlbinlog mail-bin.000001 | tail
在配置文件中指定log的輸出位置.
Windows:Windows 的配置文件為 my.ini,一般在 MySQL 的安裝目錄下或者 c:\Windows 下。
Linux:Linux 的配置文件為 my.cnf ,一般在 /etc 下。
日志文件類型概述:
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
linux下:
在[mysqld] 中輸入
復制代碼 代碼如下:
log-error=/usr/local/mysql/log/error.log
log=/usr/local/mysql/log/mysql.log
long_query_time=2
log-slow-queries= /usr/local/mysql/log/slowquery.log
windows下
在[mysqld] 中輸入
復制代碼 代碼如下:
##啟動日志
log="E:/wamp/MySql/mysql_log/mysql.log"
##錯誤日志
log-error="E:/wamp/MySql/mysql_log/mysql.logerror.log"
##是指執行超過多久的sql會被log下來,這裡是2秒
long_query_time=2
##慢查詢日志
log-slow-queries= "E:/wamp/MySql/mysql_log/slowquery.log"
long_query_time =2 --是指執行超過多久的sql會被log下來,這裡是2秒
log-slow-queries= /usr/local/mysql/log/slowquery.log --將查詢返回較慢的語句進行記錄
log-queries-not-using-indexes = nouseindex.log --就是字面意思,log下來沒有使用索引的query
log=mylog.log --對所有執行語句進行記錄