diff options
author | unknown <guilhem@mysql.com> | 2005-01-11 00:16:07 +0100 |
---|---|---|
committer | unknown <guilhem@mysql.com> | 2005-01-11 00:16:07 +0100 |
commit | 397f3ee554280bc2591c50f501ea108c072cd3cd (patch) | |
tree | 24a3c37d0f23b17cabed6e99671c2fd6f8ac013f /support-files/my-innodb-heavy-4G.cnf.sh | |
parent | d3f5dfbd17d4428bb9df247d9c39ac1e3ae63f65 (diff) | |
download | mariadb-git-397f3ee554280bc2591c50f501ea108c072cd3cd.tar.gz |
Encourage user to specify a name for the binlog index file (either by giving an argument to --log-bin,
or by using --log-bin-index). This is so that he does not have a replication break when his master's
hostname changes. Plus binary logging options consistency checks.
sql/mysqld.cc:
* Encourage user to specify a name for the binlog index file (either by giving an argument to --log-bin,
or by using --log-bin-index). This is so that he does not have a replication break when his master's
hostname changes. Why not a fatal error? To not break existing many-machine setups.
* --log-bin-index without --log-bin does not make sense.
* --log-slave-updates without --log-bin does not either.
support-files/my-huge.cnf.sh:
encourage providing an argument to log-bin
support-files/my-innodb-heavy-4G.cnf.sh:
encourage providing an argument to log-bin
support-files/my-large.cnf.sh:
encourage providing an argument to log-bin
support-files/my-medium.cnf.sh:
encourage providing an argument to log-bin
support-files/my-small.cnf.sh:
encourage providing an argument to log-bin
Diffstat (limited to 'support-files/my-innodb-heavy-4G.cnf.sh')
-rw-r--r-- | support-files/my-innodb-heavy-4G.cnf.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support-files/my-innodb-heavy-4G.cnf.sh b/support-files/my-innodb-heavy-4G.cnf.sh index 062d106ce6a..b3f43272a7d 100644 --- a/support-files/my-innodb-heavy-4G.cnf.sh +++ b/support-files/my-innodb-heavy-4G.cnf.sh @@ -189,7 +189,7 @@ tmp_table_size = 64M # Enable binary logging. This is required for acting as a MASTER in a # replication configuration. You also need the binary log if you need # the ability to do point in time recovery from your latest backup. -log_bin +log-bin=mysql-bin # If you're using replication with chained slaves (A->B->C), you need to # enable this option on server B. It enables logging of updates done by |