Mysql開啟日誌

來源:互聯網
上載者:User
是否啟用了日誌
mysql>show variables like 'log_bin';

怎樣知道當前的日誌
mysql> show master status;

看二進位記錄檔用mysqlbinlog
shell>mysqlbinlog mail-bin.000001(要寫絕對問題路徑 d://)
或者shell>mysqlbinlog mail-bin.000001 | tail
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

1. 指定恢復文法
假如你今天早上9點不小心砍掉哪個資料庫的資料表,你可以利用下面文法來恢複
mysqlbinlog --stop-date="2007-03-29 8:59:59"   /var/lib/mysql/bin.000001 | mysql -u root -p
如果你想恢複後面9點以後sql文法 可以使用
mysqlbinlog --start-date="2007-03-29 9:00:00"   /var/lib/mysql/bin.000001 | mysql -u root -p
或者是 你想恢複 9點到10點之間的sql文法,則下面文法是您想要的
mysqlbinlog --start-date="2007-03-29 9:00:00"   --stop-date="2007-03-29 10:00:00" /var/lib/mysql/bin.000001 | mysql -u root -p
其實你也可以不要執行,先把sql文法輸出到 /tmp/restore.sql
mysqlbinlog --start-date="2007-03-29 9:00:00"   --stop-date="2007-03-29 10:00:00" /var/lib/mysql/bin.000001 > /tmp/restore.sql
當然 你也可以指定你要輸出的 database,免的檔案很大
--database=db_name,-d db_name
--host=host_name,-h host_name

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.