Browse Source

small improvement

Maurits van der Schee 6 years ago
parent
commit
dd34981cdd
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      docker/ubuntu16-mariadb/run.sh
  2. 1
    1
      docker/ubuntu16/run.sh

+ 1
- 1
docker/ubuntu16-mariadb/run.sh View File

@@ -3,7 +3,7 @@
3 3
 # make sure mysql can create socket and lock
4 4
 mkdir /var/run/mysqld && chmod 777 /var/run/mysqld
5 5
 # run mysql server
6
-nohup mysqld_safe > /root/mysql.log 2>&1 &
6
+nohup mysqld > /root/mysql.log 2>&1 &
7 7
 # wait for mysql to become available
8 8
 while ! mysqladmin ping -hlocalhost >/dev/null 2>&1; do
9 9
     sleep 1

+ 1
- 1
docker/ubuntu16/run.sh View File

@@ -3,7 +3,7 @@
3 3
 # make sure mysql can create socket and lock
4 4
 mkdir /var/run/mysqld && chmod 777 /var/run/mysqld
5 5
 # run mysql server
6
-nohup mysqld_safe > /root/mysql.log 2>&1 &
6
+nohup mysqld > /root/mysql.log 2>&1 &
7 7
 # wait for mysql to become available
8 8
 while ! mysqladmin ping -hlocalhost >/dev/null 2>&1; do
9 9
     sleep 1

Loading…
Cancel
Save