mysql清除日志_Mysql清理general_log日志文件方法总结

开启mysql的日志功能,包扩通用日志和满日志方法参考琼杰笔记:

方法1:

SET GLOBAL general_log = 'OFF';

RENAME TABLE mysql.general_log TO mysql.general_log2;

DELETE FROM mysql.general_log2;

注意:当DELETE FROM mysql.general_log2执行删除表数据时,发现操作系统的数据文件还是存在的,需要手动删除该数据文件,再继续下面数据操作步骤

OPTIMIZE TABLE general_log2;

RENAME TABLE mysql.general_log2 TO mysql.general_log;

SET GLOBAL general_log = 'ON';

这种方法需要的时间比较长

方法2:

SET GLOBAL general_log = 'OFF';

找到general_log的文件 执行

cat /dev/null > general_log.csv

发现也将大小释放了,比上一个快很多

方法3:

可以在配置文件my.conf 中添加:

general_log=1

general_log_file='/data/mysql/general_log.CSV'

将文件放到更大的磁盘

你可能感兴趣的:(mysql清除日志)