MySQL replication: if i don't specify any databases, will log_bin log EVERYTHING? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T18:08:16Zhttp://stackoverflow.com/feeds/question/8166http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/8166/mysql-replication-if-i-dont-specify-any-databases-will-logbin-log-everything4MySQL replication: if i don't specify any databases, will log_bin log EVERYTHING?mauriciopastrana2008-08-11T20:08:03Z2008-08-14T04:59:55Z
<p>I'm setting up replication for a server which runs a bunch of databases (one per client) and plan on adding more all the time, on my.cnf, Instead of having:</p>
<pre><code>binlog-do-db = databasename 1
binlog-do-db = databasename 2
binlog-do-db = databasename 3
...
binlog-do-db = databasename n
</code></pre>
<p>can I rather just have </p>
<pre><code>binlog-ignore-db = mysql
binlog-ignore-db = informationschema
</code></pre>
<p>(and no database to log specified) and assume that everything else is logged?</p>
<p>EDIT: thanks! actually if I remove all my binlog-do-db entries, it seemingly logs everything (as you see the binary log file change position when you move the database), but on the slave server, nothing gets picked up! (perhaps, this is the case to use replicate-do-db? this would kill the idea; i guess I cant have MySQL automagically detect which databases to replicate).</p>
<p>cheers,</p>
<p>/mp</p>
http://stackoverflow.com/questions/8166/mysql-replication-if-i-dont-specify-any-databases-will-logbin-log-everything/8184#81843Answer by pix0r for MySQL replication: if i don't specify any databases, will log_bin log EVERYTHING?pix0r2008-08-11T20:22:24Z2008-08-11T20:22:24Z<p>That looks correct: <a href="http://dev.mysql.com/doc/refman/5.0/en/binary-log.html#option_mysqld_binlog-ignore-db" rel="nofollow" title="Cocoa Programming for Mac OSX"><a href="http://dev.mysql.com/doc/refman/5.0/en/binary-log.html#option_mysqld_binlog-ignore-db" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/binary-log.html#option_mysqld_binlog-ignore-db</a></a>.</p>
<p>According to that reference:</p>
<blockquote>
<p>There are some --binlog-ignore-db
rules. Does the default database match
any of the --binlog-ignore-db rules?</p>
<ul>
<li>Yes: Do not write the statement, and exit.</li>
<li>No: Write the query and exit.</li>
</ul>
</blockquote>
<p>Since you only have ignore commands, all queries will be written to the log as long as the default (active) database doesn't match one of the ignored databases. </p>
http://stackoverflow.com/questions/8166/mysql-replication-if-i-dont-specify-any-databases-will-logbin-log-everything/10665#106650Answer by AdamGiles for MySQL replication: if i don't specify any databases, will log_bin log EVERYTHING?AdamGiles2008-08-14T04:27:09Z2008-08-14T04:27:09Z<p>pixOr is correct - anything not explicitly ignored is replicated.</p>
<p>This is how I replicate my DBs over the 7 thousand miles between by dev and prod servers :-)</p>