Those are not mysql log files.
That's a table called log. If you want to make it smaller, you will have to know the structure of the table (describe table), lookup for some date column (field) and delete part of the log file.
Like "delete from log where date_field < '2007-12-11 00:00:00'
Main Topics
Browse All Topics





by: ravenplPosted on 2008-01-24 at 11:56:01ID: 20736676
The log.MYD file is not mysql's log, but application's that uses it. g.MYD
if the file is called /var/lib/mysql/somename/lo
it means that there is table called "log" in database "somename".
Identify application that uses somename database.
If You still want to get rid of all logs, simply login into mysql shell and execute
use somename
delete from log;