what is mysql-bin.000 files

what is mysql-bin.000 files

mysql data 폴더에 쌓여있는 것들

꽤 많은 용량을 차지하고 있다.

이것들은 MySQL 만들어내는 바이너리 로그이고 계속 자동으로 rotate 된다.

파일을 줄이려면 my.cnf에 설정하자.

[mysqld]
expire-logs-days=3

그리고 접속해서

mysql> SET GLOBAL expire_logs_days = 3;

그리고 MySQL restart

참고:
http://dba.stackexchange.com/questions/41050/is-it-safe-to-delete-mysql-bin-files
http://www.cyberciti.biz/faq/what-is-mysql-binary-log/

what is mysql-bin.000 files
Scroll to top