summaryrefslogtreecommitdiffstats
path: root/my.cnf
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2011-02-10 13:51:09 +0100
committerRemi Collet <fedora@famillecollet.com>2011-02-10 13:51:09 +0100
commitc848b9af57da305109c32788a0d98d5305d74048 (patch)
tree86f808279c515d4d20aa72054b0874be816fecb3 /my.cnf
parent4192184e43dadb39b71af29126825312b539ae26 (diff)
move mysql 5.5 stuff to new dir
Diffstat (limited to 'my.cnf')
-rw-r--r--my.cnf30
1 files changed, 30 insertions, 0 deletions
diff --git a/my.cnf b/my.cnf
new file mode 100644
index 0000000..d8fe399
--- /dev/null
+++ b/my.cnf
@@ -0,0 +1,30 @@
+[mysqld]
+datadir=/var/lib/mysql
+socket=/var/lib/mysql/mysql.sock
+user=mysql
+# Disabling symbolic-links is recommended to prevent assorted security risks
+symbolic-links=0
+
+# Additional storage engines and plugins
+plugin-load=archive=ha_archive.so;blackhole=ha_blackhole.so
+
+# Add to the above plugin-load option, if needed
+# http://dev.mysql.com/doc/refman/5.5/en/federated-storage-engine.html
+;federated=ha_federated.so
+# http://dev.mysql.com/doc/refman/5.5/en/replication-semisync.html
+;rpl_semi_sync_master=semisync_master.so
+;rpl_semi_sync_slave=semisync_slave.so
+
+# Others options for Semisynchronous Replication
+;rpl_semi_sync_master_enabled=1
+;rpl_semi_sync_master_timeout=10
+;rpl_semi_sync_slave_enabled=1
+
+# http://dev.mysql.com/doc/refman/5.5/en/performance-schema.html
+;performance_schema
+
+
+[mysqld_safe]
+log-error=/var/log/mysqld.log
+pid-file=/var/run/mysqld/mysqld.pid
+