清理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慢查詢日志文件并重新啟用慢查詢日志功能。