mysql 記錄檔mysql-bin檔案清除方法,和mysql-bin相關檔案的配置

來源:互聯網
上載者:User

標籤:

預設情況下mysql會一直保留mysql-bin檔案,這樣到一定時候,磁碟可能會被撐滿,這時候是否可以刪除這些檔案呢,是否可以安全刪除,是個問題。

首先要說明一下,這些檔案都是mysql的記錄檔,如果不做主從複製的話,基本上是沒用的,雖然沒用,但是不建議使用rm命令刪除,這樣有可能會不安全,正確的方法是通過mysql的命令去刪除。

mysql -u root -pEnter password: Welcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 2819416Server version: 5.5.24-0ubuntu0.12.04.1-log (Ubuntu)Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.mysql> reset master;Query OK, 0 rows affected (3 min 37.65 sec)

其實關鍵的命令就是reset master;這個命令會清空mysql-bin檔案。

另外如果你的mysql伺服器不需要做主從複製的話,建議通過修改my.cnf檔案,來設定不產生這些檔案,只要刪除my.cnf中的下面一行就可以了。

log-bin=mysql-bin

如果你需要複製,最好控制一下這些記錄檔保留的天數,可以通過下面的配置設定記錄檔保留的天數:

expire_logs_days = 7

表示保留7天的日誌,這樣老日誌會自動被清理掉。

mysql 記錄檔mysql-bin檔案清除方法,和mysql-bin相關檔案的配置

相關文章

聯繫我們

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