清理MySQL慢日志文件的方法如下:
show variables like 'slow_query_log_file';
set global slow_query_log = 'OFF';
rm /path/to/slow_query_log_file
set global slow_query_log = 'ON';
set global slow_query_log_file = '/path/to/new_slow_query_log_file';
show variables like 'slow_query_log';
通过以上步骤,你可以清理MySQL慢查询日志文件并重新启用慢查询日志功能。