標籤:
預設情況下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相關檔案的配置