mysql日誌檢視

2021-12-30 07:56:49 字數 1545 閱讀 7316

是否啟用了日誌

mysql>show variables like 'log_bin';

怎樣知道當前的日誌

mysql> show master status;

看二進位制日誌檔案用mysqlbinlog

shell>mysqlbinlog mail-bin.000001(要寫絕對問題路徑d://)

或者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=err.log

#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 --對所有執行語句進行記錄

log-error=log-error.log

log=log-query.log

log-queries-not-using-indexes

log-warnings=2

log-slow-queries=log-slow-query.log

log-update=log-update.log

long_query_time=2

摘自 oo&&xx的部落格

mysql日誌檢視

是否啟用了日誌 mysql show variables like log bin 怎樣知道當前的日誌 mysql show master status 看二進位制日誌檔案用mysqlbinlog shell mysqlbinlog mail bin.000001 要寫絕對問題路徑d 或者shell...

檢視mysql日誌

檢視mysql資料庫日誌可以檢視對資料庫的操作記錄。mysql日誌檔案預設沒有產生,需要做如下配置 sudo service mysql restart使用如下命令開啟mysql日誌檔案。tail f var log mysql mysql.log 可以實時檢視資料庫的日誌內容 如提示需要sudo許...

mysql 表 日誌 檢視mysql的日誌

mysql日誌的種類,一般來說,日誌有五種,分別為 錯誤日誌 log err 記錄啟動,執行,停止mysql時出現的資訊 二進位制日誌 log bin 記錄所有更改資料的語句,還用於複製,恢復資料庫用 查詢日誌 log 記錄建立的客戶端連線和執行的語句 慢查詢日誌 log slow queries ...