diff options
author | 2017-07-19 16:15:02 -0400 | |
---|---|---|
committer | 2017-07-19 16:17:48 -0400 | |
commit | bdadb2af24e76b6be7b232b89eb580c41580668f (patch) | |
tree | 127a8d42f90ea3793b5d83bc09a0ec3b198997eb /dev-db/mariadb/files | |
parent | dev-db/mariadb: Drop old 5.5.56 (diff) | |
download | gentoo-bdadb2af24e76b6be7b232b89eb580c41580668f.tar.gz gentoo-bdadb2af24e76b6be7b232b89eb580c41580668f.tar.bz2 gentoo-bdadb2af24e76b6be7b232b89eb580c41580668f.zip |
dev-db/mariadb: Version bump for 10.2.7 - Note the config changes
This version is initially masked for diehard testing
Email the team at mysql-bugs@gentoo.org with feedback
The config now accepts files listed under /etc/mysql/mariadb.d to add your own settings
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'dev-db/mariadb/files')
-rw-r--r-- | dev-db/mariadb/files/my.cnf-10.2 | 3 | ||||
-rw-r--r-- | dev-db/mariadb/files/my.cnf.distro-client | 21 | ||||
-rw-r--r-- | dev-db/mariadb/files/my.cnf.distro-server | 28 |
3 files changed, 52 insertions, 0 deletions
diff --git a/dev-db/mariadb/files/my.cnf-10.2 b/dev-db/mariadb/files/my.cnf-10.2 new file mode 100644 index 000000000000..80b47714b8f5 --- /dev/null +++ b/dev-db/mariadb/files/my.cnf-10.2 @@ -0,0 +1,3 @@ +# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/my.cnf: The global mysql configuration file. + +!includedir @GENTOO_PORTAGE_EPREFIX@/etc/mysql/mariadb.d diff --git a/dev-db/mariadb/files/my.cnf.distro-client b/dev-db/mariadb/files/my.cnf.distro-client new file mode 100644 index 000000000000..4bbe0f976c63 --- /dev/null +++ b/dev-db/mariadb/files/my.cnf.distro-client @@ -0,0 +1,21 @@ +# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/50-distro-client.cnf: The global mysql configuration file. + +# The following options will be passed to all MySQL clients +[client] +socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock +character-sets-dir = @GENTOO_PORTAGE_EPREFIX@/usr/share/mariadb/charsets +default-character-set=utf8 + +[mysql] +# uncomment the next directive if you are not familiar with SQL +#safe-updates + +[mysqldump] +quick +max_allowed_packet = 16M + +[myisamchk] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mariadb/charsets + +[myisampack] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mariadb/charsets diff --git a/dev-db/mariadb/files/my.cnf.distro-server b/dev-db/mariadb/files/my.cnf.distro-server new file mode 100644 index 000000000000..eaf80be0a15d --- /dev/null +++ b/dev-db/mariadb/files/my.cnf.distro-server @@ -0,0 +1,28 @@ +# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/50-distro-server.cnf: The global mysql configuration file. + +# add a section [mysqld-4.1] or [mysqld-5.0] for specific configurations +[mysqld] +character-set-server = utf8 +user = mysql +port = 3306 +socket = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mysqld.sock +pid-file = @GENTOO_PORTAGE_EPREFIX@/var/run/mysqld/mariadb.pid +log-error = @GENTOO_PORTAGE_EPREFIX@/var/log/mysql/mysqld.err +basedir = @GENTOO_PORTAGE_EPREFIX@/usr +datadir = @DATADIR@ +skip-external-locking +lc_messages_dir = @GENTOO_PORTAGE_EPREFIX@/usr/share/mariadb +#Set this to your desired error message language +lc_messages = en_US + +# security: +# using "localhost" in connects uses sockets by default +# skip-networking +bind-address = 127.0.0.1 + +log-bin +server-id = 1 + +# point the following paths to different dedicated disks +tmpdir = @GENTOO_PORTAGE_EPREFIX@/tmp/ +#log-update = @GENTOO_PORTAGE_EPREFIX@/path-to-dedicated-directory/hostname |