MYSQL開啟錯誤日誌的方法

2022-08-27 15:18:11 字數 783 閱讀 8717

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=  

開啟php fpm php錯誤日誌

進行如下的設定就能檢視到nginx下php fpm不記錄php錯誤日誌的方法 1,修改php fpm.conf中的配置,如果沒有請增加 複製 如下 global error log log php error log www catch workers output yes 2.修改php.ini中...

Mysql開啟日誌

原文 http hi.baidu.com jackli00 blog item 21b2e242025bfa1473f05d24.html mysql開啟日誌 2008 11 18 11 23 是否啟用了日誌 mysql show variables like log bin 怎樣知道當前的日誌 m...

開啟MySQL日誌

mysql資料庫在安裝時預設是不開啟日誌功能的,需要手動開啟。1.登陸mysql,輸入以下 檢視是否已經開啟日誌功能 mysql show variables like log bin 顯示如下,表示未開啟 在 mysqld 下方新增如下 server id 1918 log bin mysql b...