MySQL replication: if i don't specify any databases, will log_bin log EVERYTHING? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T18:08:16Z http://stackoverflow.com/feeds/question/8166 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/8166/mysql-replication-if-i-dont-specify-any-databases-will-logbin-log-everything 4 MySQL replication: if i don't specify any databases, will log_bin log EVERYTHING? mauriciopastrana 2008-08-11T20:08:03Z 2008-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#8184 3 Answer by pix0r for MySQL replication: if i don't specify any databases, will log_bin log EVERYTHING? pix0r 2008-08-11T20:22:24Z 2008-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#10665 0 Answer by AdamGiles for MySQL replication: if i don't specify any databases, will log_bin log EVERYTHING? AdamGiles 2008-08-14T04:27:09Z 2008-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>