aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2014-10-29 14:15:09 +0800
committerMartin Jansa <Martin.Jansa@gmail.com>2014-11-07 15:05:05 +0100
commitaec24e33e053ce75ad733b786056dc45186e503e (patch)
tree604156e95eb9551bceccc0e6867130767ce93382
parent67d5c9e37780c42c3ee82b2234298bfdce3c5053 (diff)
downloadmeta-openembedded-contrib-aec24e33e053ce75ad733b786056dc45186e503e.tar.gz
mariadb: change socket location in my.cnf
Change socket location to /var/lib/mysql/mysql.sock. Otherwise, we could spot errors in systemd systems like below. mysqladmin: connect to server at 'localhost' failed error: 'Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)' Check that mysqld is running and that the socket: '/tmp/mysql.sock' exists! This is because mysqld.service is using PrivateTmp=true. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r--meta-oe/recipes-support/mysql/mariadb/my.cnf4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/mysql/mariadb/my.cnf b/meta-oe/recipes-support/mysql/mariadb/my.cnf
index f2c9b9036f..c9b785b6bc 100644
--- a/meta-oe/recipes-support/mysql/mariadb/my.cnf
+++ b/meta-oe/recipes-support/mysql/mariadb/my.cnf
@@ -1,7 +1,7 @@
[client]
#password = password
port = 3306
-socket = /tmp/mysql.sock
+socket = /var/lib/mysql/mysql.sock
[mysqld_safe]
err-log = /var/log/mysql.err
@@ -9,7 +9,7 @@ err-log = /var/log/mysql.err
[mysqld]
user = mysql
port = 3306
-socket = /tmp/mysql.sock
+socket = /var/lib/mysql/mysql.sock
pid-file = /var/lib/mysql/mysqld.pid
log-error = /var/log/mysqld.err
basedir = /usr