【轉】MYSQL啟用日誌,和查看日誌

來源:互聯網
上載者:User

標籤:blog   http   使用   檔案   ar   art   div   代碼   

轉載地址:http://wasabi.iteye.com/blog/318962 mysql有以下幾種日誌: 
   錯誤記錄檔:     -log-err 
   查詢日誌:     -log 
   慢查詢日誌:   -log-slow-queries 
   更新日誌:     -log-update 
   二進位日誌: -log-bin 


是否啟用了日誌
mysql>show variables like ‘log_%‘;

怎樣知道當前的日誌
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 下。

在linux下:
Sql代碼  
  1. # 在[mysqld] 中輸入  
  2. #log  
  3. log-error=/usr/local/mysql/log/error.log  
  4. log=/usr/local/mysql/log/mysql.log  
  5. long_query_time=2  
  6. log-slow-queries= /usr/local/mysql/log/slowquery.log  


windows下:
Sql代碼  
  1. # 在[mysqld] 中輸入  
  2. #log  
  3. log-error="E:/PROGRA~1/EASYPH~1.0B1/mysql/logs/error.log"  
  4. log="E:/PROGRA~1/EASYPH~1.0B1/mysql/logs/mysql.log"  
  5. long_query_time=2  
  6. log-slow-queries= "E:/PROGRA~1/EASYPH~1.0B1/mysql/logs/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  --對所有執行語句進行記錄
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.