diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
commit | b70981b68efcce5256eb11c6cd26ae123b10b6ea (patch) | |
tree | a38be6efae5e2ba15c2e839504632f9b7bfd5f91 /main/mysql/mysql.mycnf | |
parent | 2b4df81538b8398442d5296650905c70341dd8d3 (diff) | |
download | aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.bz2 aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.xz |
moved extra/* to main/
and fixed misc build issues
Diffstat (limited to 'main/mysql/mysql.mycnf')
-rw-r--r-- | main/mysql/mysql.mycnf | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/main/mysql/mysql.mycnf b/main/mysql/mysql.mycnf new file mode 100644 index 000000000..6df0334ef --- /dev/null +++ b/main/mysql/mysql.mycnf @@ -0,0 +1,49 @@ +# The following values assume you have at least 32M RAM! + +[client] +#password = my_password +port = 3306 +socket = /var/run/mysqld/mysqld.sock + +[safe_mysqld] +err-log = /var/log/mysql/mysql.err + +[mysqld] +# this disabled mysqld from listing on any interface. +# Use localhost to connect to socket +# If you need networking comment out the following line +skip-networking + +# If innodb is needed commend next line +# if not leave this to increase performance +skip-innodb + +innodb_file_per_table +user = mysql +pid-file = /var/run/mysqld/mysqld.pid +socket = /var/run/mysqld/mysqld.sock +port = 3306 + +# Only enable this if you really need it +# eats resources. +#log = /var/log/mysql/mysql.log + +basedir = /usr +datadir = /var/lib/mysql +tmpdir = /tmp +language = /usr/share/mysql/english +skip-locking +set-variable = key_buffer=16M +set-variable = max_allowed_packet=1M +set-variable = thread_stack=128K + +[mysqldump] +quick +set-variable = max_allowed_packet=1M + +[mysql] +#no-auto-rehash # faster start of mysql but no tab completition + +[isamchk] +set-variable = key_buffer=16M + |