mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
mysql: fix start script for /run on separate tmpfs
Recently the default skeleton was changed to have /run as a separate tmpfs instead of a symlink to /tmp. /run is not world-writable, but mysqld tries to write its PID file as user mysql. Therefore, it fails to start. To fix, create /run/mysql and give it to user mysql. While we're at it, change the paths to /run instead of /var/run. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
bada891fdb
commit
8ff54bb7a4
@ -7,16 +7,20 @@ case "$1" in
|
|||||||
mysql_install_db --user=mysql --ldata=/var/mysql
|
mysql_install_db --user=mysql --ldata=/var/mysql
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# mysqld runs as user mysql, but /run is only writable by root
|
||||||
|
# so create a subdirectory for mysql.
|
||||||
|
install -d -o mysql -g root -m 0700 /run/mysql
|
||||||
|
|
||||||
# We don't use start-stop-daemon because mysqld has
|
# We don't use start-stop-daemon because mysqld has
|
||||||
# its own wrapper script.
|
# its own wrapper script.
|
||||||
printf "Starting mysql..."
|
printf "Starting mysql..."
|
||||||
/usr/bin/mysqld_safe --pid-file=/var/run/mysqld.pid &
|
/usr/bin/mysqld_safe --pid-file=/run/mysql/mysqld.pid &
|
||||||
echo "done."
|
echo "done."
|
||||||
;;
|
;;
|
||||||
stop)
|
stop)
|
||||||
printf "Stopping mysql..."
|
printf "Stopping mysql..."
|
||||||
if test -f /var/run/mysqld.pid ; then
|
if test -f /run/mysql/mysqld.pid ; then
|
||||||
kill `cat /var/run/mysqld.pid`
|
kill `cat /run/mysql/mysqld.pid`
|
||||||
fi
|
fi
|
||||||
echo "done."
|
echo "done."
|
||||||
;;
|
;;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user