diff options
author | Gluzskiy Alexandr <sss123next@list.ru> | 2010-05-13 21:02:43 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@list.ru> | 2010-05-13 21:02:43 +0300 |
commit | 2ccc9f182ace325dd4bcbf7f549e010a77900dfe (patch) | |
tree | 8825808291a3759badf170df9fde4fb6e4431ddf /dev-db/mysql/files/my.cnf | |
parent | 1c2f20daf6b2baa968e6139fe7c161308b089baf (diff) |
new file: dev-db/mysql/files/my.cnf
new file: dev-db/mysql/files/my.cnf-4.0
new file: dev-db/mysql/files/my.cnf-4.1
new file: dev-db/mysql/files/my.cnf-5.1
new file: dev-db/mysql/files/mysql-5.1-gcc45-apicheck.patch
new file: dev-db/mysql/files/mysql.init
new file: dev-db/mysql/mysql-5.1.46-r1.ebuild
modified: dev-libs/glib/glib-2.9999.ebuild
Diffstat (limited to 'dev-db/mysql/files/my.cnf')
-rw-r--r-- | dev-db/mysql/files/my.cnf | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/dev-db/mysql/files/my.cnf b/dev-db/mysql/files/my.cnf new file mode 100644 index 0000000..4e7d0f6 --- /dev/null +++ b/dev-db/mysql/files/my.cnf @@ -0,0 +1,48 @@ +# /etc/mysql/my.cnf: The global mysql configuration file. +# $Header: /var/cvsroot/gentoo-x86/dev-db/mysql/files/my.cnf,v 1.5 2008/11/14 01:49:37 robbat2 Exp $ +# +# This file can be simultaneously placed in three places: +# 1. /etc/mysql/my.cnf to set global options. +# 2. /var/lib/mysql/my.cnf to set server-specific options. +# 3. ~/.my.cnf to set user-specific options. +# +# One can use all long options that the program supports. +# Run the program with --help to get a list of them. +# +# 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] +#skip-networking +skip-innodb +innodb_file_per_table +user = mysql +pid-file = /var/run/mysqld/mysqld.pid +socket = /var/run/mysqld/mysqld.sock +port = 3306 +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 |