經驗證預設情況下,windows下mysql的錯誤日誌是關閉的;驗證方法是在cmd下進入mysql後,執行sql語句:
show global variables like '%log%';
返回結果如圖:
可以在mysql 的配置檔案my.ini的[mysqld]中,新增:
#錯誤日誌 記錄啟動、執行或停止mysqld時出現的問題。
#enter a name for the error log file. otherwise a default name will be used.
#log-error=d:/mysql_log_err.txt
#查詢日誌 記錄建立的客戶端連線和執行的語句。
#enter a name for the query log file. otherwise a default name will be used.
#log=d:/mysql_log.txt
#二進位制日誌 記錄所有更改資料的語句。還用於複製。
#enter a name for the binary log. otherwise a default name will be used.
#log-bin=d:/mysql_log_bin
#慢日誌 記錄所有執行時間超過long_query_time秒的所有查詢或不使用索引的查詢。
#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
開啟以上四種操作日誌配置後,分別在e:/生成了對應檔案,可以在日誌檔案中查詢mysql的操作記錄了,在此不再贅述,再次執行sql,返回結果如圖:
#更新日誌 記錄更改資料的語句。不贊成使用該日誌。
#enter a name for the update log file. otherwise a default name will be used.
log-update=d:/mysql_log_update.txt
mysqld的服務無法啟動,測試中...
admin159
記錄mysql操作日誌
現在想比對php網頁執行前後的差異,但是一直找不到比較好的軟體 增刪查改都記錄的那種。然後通過瀏覽官方文件發現mysql 5。1有乙個通用查詢日誌。於是嘗試 mysql.server start log file name.log starting mysql 2017 12 16 14 51 44...
mysql 操作日誌檢視
對my.ini檔案進行設定 mysqld basedir e mysql 4.0.12 bind address 192.168.15.196 datadir e mysql 4.0.12 data language e mysql 4.0.12 share your language direct...
mysql 日誌 部落格 Mysql 日誌
日誌 errlog錯誤日誌 作用記錄mysql從啟動以來,所有的狀態,警告,錯誤。dba靠此定位資料庫問題。配置預設是開啟,vim etc my.cnf log error var log mysqld.log binlog二進位制日誌 作用主要記錄資料庫變化的日誌。資料恢復,主從複製中應用 檢視再...