diff options
author | Vance M. Allen <vma_gentoo@vmacs.us> | 2018-04-22 11:28:32 -0600 |
---|---|---|
committer | Vance M. Allen <vma_gentoo@vmacs.us> | 2018-04-22 11:28:32 -0600 |
commit | f7cbcff72c186213e298064174d72e3672dbfda4 (patch) | |
tree | e3ea790d44584ad3bc7fe327fb8d118e1ff6e47e | |
parent | Add support for mysql-8.0 series (diff) | |
download | vmacs-f7cbcff72c186213e298064174d72e3672dbfda4.tar.gz vmacs-f7cbcff72c186213e298064174d72e3672dbfda4.tar.bz2 vmacs-f7cbcff72c186213e298064174d72e3672dbfda4.zip |
Add support for mysql-5.7 and mysql-8.0 series
-rw-r--r-- | dev-db/mysql/files/my.cnf-5.7 | 3 | ||||
-rw-r--r-- | dev-db/mysql/files/my.cnf-8.0 | 3 | ||||
-rw-r--r-- | dev-db/mysql/files/my.cnf.distro-client | 21 | ||||
-rw-r--r-- | dev-db/mysql/files/my.cnf.distro-server | 28 |
4 files changed, 55 insertions, 0 deletions
diff --git a/dev-db/mysql/files/my.cnf-5.7 b/dev-db/mysql/files/my.cnf-5.7 new file mode 100644 index 0000000..571ebf0 --- /dev/null +++ b/dev-db/mysql/files/my.cnf-5.7 @@ -0,0 +1,3 @@ +# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/my.cnf: The global mysql configuration file. + +!includedir @GENTOO_PORTAGE_EPREFIX@/etc/mysql/mysql.d diff --git a/dev-db/mysql/files/my.cnf-8.0 b/dev-db/mysql/files/my.cnf-8.0 new file mode 100644 index 0000000..571ebf0 --- /dev/null +++ b/dev-db/mysql/files/my.cnf-8.0 @@ -0,0 +1,3 @@ +# @GENTOO_PORTAGE_EPREFIX@/etc/mysql/my.cnf: The global mysql configuration file. + +!includedir @GENTOO_PORTAGE_EPREFIX@/etc/mysql/mysql.d diff --git a/dev-db/mysql/files/my.cnf.distro-client b/dev-db/mysql/files/my.cnf.distro-client new file mode 100644 index 0000000..8bf1836 --- /dev/null +++ b/dev-db/mysql/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/mysql/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/mysql/charsets + +[myisampack] +character-sets-dir=@GENTOO_PORTAGE_EPREFIX@/usr/share/mysql/charsets diff --git a/dev-db/mysql/files/my.cnf.distro-server b/dev-db/mysql/files/my.cnf.distro-server new file mode 100644 index 0000000..d4ed30c --- /dev/null +++ b/dev-db/mysql/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/mysql.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/mysql +#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 |