Skip to content

Commit dd34981

Browse files
committed
small improvement
1 parent 37c360f commit dd34981

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docker/ubuntu16-mariadb/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# make sure mysql can create socket and lock
44
mkdir /var/run/mysqld && chmod 777 /var/run/mysqld
55
# run mysql server
6-
nohup mysqld_safe > /root/mysql.log 2>&1 &
6+
nohup mysqld > /root/mysql.log 2>&1 &
77
# wait for mysql to become available
88
while ! mysqladmin ping -hlocalhost >/dev/null 2>&1; do
99
sleep 1

docker/ubuntu16/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# make sure mysql can create socket and lock
44
mkdir /var/run/mysqld && chmod 777 /var/run/mysqld
55
# run mysql server
6-
nohup mysqld_safe > /root/mysql.log 2>&1 &
6+
nohup mysqld > /root/mysql.log 2>&1 &
77
# wait for mysql to become available
88
while ! mysqladmin ping -hlocalhost >/dev/null 2>&1; do
99
sleep 1

0 commit comments

Comments
 (0)