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-large.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-large.cnf.sh')
-rw-r--r-- | support-files/my-large.cnf.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support-files/my-large.cnf.sh b/support-files/my-large.cnf.sh index 59aca4b32f2..1e7d9f7aade 100644 --- a/support-files/my-large.cnf.sh +++ b/support-files/my-large.cnf.sh @@ -48,7 +48,7 @@ thread_concurrency = 8 # Replication Master Server (default) # binary logging is required for replication -log-bin +log-bin=mysql-bin # required unique id between 1 and 2^32 - 1 # defaults to 1 if master-host is not set @@ -108,7 +108,7 @@ server-id = 1 #master-port = <port> # # binary logging - not required for slaves, but recommended -#log-bin +#log-bin=mysql-bin # Point the following paths to different dedicated disks #tmpdir = /tmp/ |