MySql ServerName.Log file size - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T13:18:11Z http://stackoverflow.com/feeds/question/919794 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/919794/mysql-servername-log-file-size 0 MySql ServerName.Log file size Rob 2009-05-28T08:31:03Z 2009-05-29T04:56:02Z <p>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.</p> <p>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.</p> http://stackoverflow.com/questions/919794/mysql-servername-log-file-size/924441#924441 0 Answer by Alex Martelli for MySql ServerName.Log file size Alex Martelli 2009-05-29T04:56:02Z 2009-05-29T04:56:02Z <p>The general docs are at <a href="http://dev.mysql.com/doc/refman/5.0/en/log-file-maintenance.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/log-file-maintenance.html</a> -- depending on your MySql release, the relevant bit may be</p> <blockquote> <p>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</p> </blockquote> <p>If you're running a MySql release >= 5.0.17, a periodic <code>FLUSH LOGS</code> should serve; also consider setting the <code>sql_log_off</code> session variable to <code>ON</code> (which kind-of-confusingly disables some logging for the current session, aka connection).</p>