vote up 0 vote down star
1

In "Program Files\MySQL\MySQL Server 5.0\data" there is a file named servername.log (where serername is the name of the server) that we've seen hit, and exceed 12Gb on a 32bit Windows Server 2003 machine.

What MySql configuration setting is used to control this? I've tried looking through my.ini to see if any of the comments in there shed any light and also tried searching on google. Unfortunately I'm not particularly a MySql expert and there seem to be lots of different things/ways MySql logs, and I'm not sure which is which, hence this question.

flag

1 Answer

vote up 0 vote down

The general docs are at http://dev.mysql.com/doc/refman/5.0/en/log-file-maintenance.html -- depending on your MySql release, the relevant bit may be

Before 5.0.17, you cannot rename a log file on Windows while the server has it open. You must stop the server and rename the file, and then restart the server to create a new log file

If you're running a MySql release >= 5.0.17, a periodic FLUSH LOGS should serve; also consider setting the sql_log_off session variable to ON (which kind-of-confusingly disables some logging for the current session, aka connection).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.