summaryrefslogtreecommitdiff
path: root/support-files/my-medium.cnf.sh
diff options
context:
space:
mode:
authorunknown <lenz@mysql.com>2003-04-09 22:14:21 +0200
committerunknown <lenz@mysql.com>2003-04-09 22:14:21 +0200
commitd1048a22bb3dba079d3b1af651ba63e7eeed4861 (patch)
treee45f24f25e9c4bb1d1cc28cc2bd92805e1f1abdf /support-files/my-medium.cnf.sh
parent0606f5bb1b4c98b77e10b934d3c1b71b5eaa9b36 (diff)
downloadmariadb-git-d1048a22bb3dba079d3b1af651ba63e7eeed4861.tar.gz
- worked around bug #235 (my-huge.cnf error) by reformatting the comments
in the sample configuration files - reworked the replication options and comments a bit - added option "skip-networking" (commented out by default) to the sample configuration files (enhancement request from bug report #234) support-files/my-huge.cnf.sh: - work around bug #235 (comments at the end of configuration options lead to errors) by reformatting the comments to be above the options instead - enhanced comments on the replication options a bit - added option "skip-networking" (commented out by default) with an appropriate comment (bug #234) support-files/my-large.cnf.sh: - work around bug #235 (comments at the end of configuration options lead to errors) by reformatting the comments to be above the options instead - enhanced comments on the replication options a bit - added option "skip-networking" (commented out by default) with an appropriate comment (bug #234) support-files/my-medium.cnf.sh: - work around bug #235 (comments at the end of configuration options lead to errors) by reformatting the comments to be above the options instead - enhanced comments on the replication options a bit - added option "skip-networking" (commented out by default) with an appropriate comment (bug #234)
Diffstat (limited to 'support-files/my-medium.cnf.sh')
-rw-r--r--support-files/my-medium.cnf.sh41
1 files changed, 41 insertions, 0 deletions
diff --git a/support-files/my-medium.cnf.sh b/support-files/my-medium.cnf.sh
index a92494358cb..b5ce3bc6ced 100644
--- a/support-files/my-medium.cnf.sh
+++ b/support-files/my-medium.cnf.sh
@@ -33,9 +33,50 @@ set-variable = table_cache=64
set-variable = sort_buffer=512K
set-variable = net_buffer_length=8K
set-variable = myisam_sort_buffer_size=8M
+
+# Don't listen on a TCP/IP port at all. This can be a security enhancement,
+# if all processes that need to connect to mysqld run on the same host.
+# All interaction with mysqld must be made via Unix sockets or named pipes.
+# Note that using this option without enabling named pipes on Windows
+# (via the "pipe" option) will render mysqld useless!
+#
+#skip-networking
+
+# Replication Master Server (default)
+# binary logging is required for replication
log-bin
+
+# required unique id between 1 and 2^32 - 1
+# defaults to 1 if master-host is not set
+# but will not function as a master if omitted
server-id = 1
+# Replication Slave Server (comment out master section to use this)
+#
+# required unique id between 2 and 2^32 - 1
+# (and different from the master)
+# defaults to 2 if master-host is set
+# but will not function as a slave if omitted
+#server-id = 2
+#
+# The replication master for this slave - required
+#master-host = <hostname>
+#
+# The username the slave will use for authentication when connecting
+# to the master - required
+#master-user = <username>
+#
+# The password the slave will authenticate with when connecting to
+# the master - required
+#master-password = <password>
+#
+# The port the master is listening on.
+# optional - defaults to 3306
+#master-port = <port>
+#
+# binary logging - not required for slaves, but recommended
+#log-bin
+
# Point the following paths to different dedicated disks
#tmpdir = /tmp/
#log-update = /path-to-dedicated-directory/hostname