MySql ServerName.Log file size - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T13:18:11Zhttp://stackoverflow.com/feeds/question/919794http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/919794/mysql-servername-log-file-size0MySql ServerName.Log file sizeRob2009-05-28T08:31:03Z2009-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#9244410Answer by Alex Martelli for MySql ServerName.Log file sizeAlex Martelli2009-05-29T04:56:02Z2009-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>