MDEV-5510: Replace MySQL -> MariaDB in init scripts
This commit is contained in:
parent
701c7e777f
commit
cc3155415e
@ -2,7 +2,7 @@
|
|||||||
# Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
|
# Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB
|
||||||
# This file is public domain and comes with NO WARRANTY of any kind
|
# This file is public domain and comes with NO WARRANTY of any kind
|
||||||
|
|
||||||
# MySQL daemon start/stop script.
|
# MariaDB daemon start/stop script.
|
||||||
|
|
||||||
# Usually this is put in /etc/init.d (at least on machines SYSV R4 based
|
# Usually this is put in /etc/init.d (at least on machines SYSV R4 based
|
||||||
# systems) and linked to /etc/rc3.d/S99mysql and /etc/rc0.d/K01mysql.
|
# systems) and linked to /etc/rc3.d/S99mysql and /etc/rc0.d/K01mysql.
|
||||||
@ -21,14 +21,14 @@
|
|||||||
# Required-Stop: $local_fs $network $remote_fs
|
# Required-Stop: $local_fs $network $remote_fs
|
||||||
# Default-Start: 2 3 4 5
|
# Default-Start: 2 3 4 5
|
||||||
# Default-Stop: 0 1 6
|
# Default-Stop: 0 1 6
|
||||||
# Short-Description: start and stop MySQL
|
# Short-Description: start and stop MariaDB
|
||||||
# Description: MySQL is a very fast and reliable SQL database engine.
|
# Description: MariaDB is a very fast and reliable SQL database engine.
|
||||||
### END INIT INFO
|
### END INIT INFO
|
||||||
|
|
||||||
# If you install MySQL on some other places than @prefix@, then you
|
# If you install MariaDB on some other places than @prefix@, then you
|
||||||
# have to do one of the following things for this script to work:
|
# have to do one of the following things for this script to work:
|
||||||
#
|
#
|
||||||
# - Run this script from within the MySQL installation directory
|
# - Run this script from within the MariaDB installation directory
|
||||||
# - Create a /etc/my.cnf file with the following information:
|
# - Create a /etc/my.cnf file with the following information:
|
||||||
# [mysqld]
|
# [mysqld]
|
||||||
# basedir=<path-to-mysql-installation-directory>
|
# basedir=<path-to-mysql-installation-directory>
|
||||||
@ -37,11 +37,11 @@
|
|||||||
# - Add the path to the mysql-installation-directory to the basedir variable
|
# - Add the path to the mysql-installation-directory to the basedir variable
|
||||||
# below.
|
# below.
|
||||||
#
|
#
|
||||||
# If you want to affect other MySQL variables, you should make your changes
|
# If you want to affect other MariaDB variables, you should make your changes
|
||||||
# in the /etc/my.cnf, ~/.my.cnf or other MySQL configuration files.
|
# in the /etc/my.cnf, ~/.my.cnf or other MariaDB configuration files.
|
||||||
|
|
||||||
# If you change base dir, you must also change datadir. These may get
|
# If you change base dir, you must also change datadir. These may get
|
||||||
# overwritten by settings in the MySQL configuration files.
|
# overwritten by settings in the MariaDB configuration files.
|
||||||
|
|
||||||
basedir=
|
basedir=
|
||||||
datadir=
|
datadir=
|
||||||
@ -291,7 +291,7 @@ case "$mode" in
|
|||||||
# Safeguard (relative paths, core dumps..)
|
# Safeguard (relative paths, core dumps..)
|
||||||
cd $basedir
|
cd $basedir
|
||||||
|
|
||||||
echo $echo_n "Starting MySQL"
|
echo $echo_n "Starting MariaDB"
|
||||||
if test -x $bindir/mysqld_safe
|
if test -x $bindir/mysqld_safe
|
||||||
then
|
then
|
||||||
# Give extra arguments to mysqld with the my.cnf file. This script
|
# Give extra arguments to mysqld with the my.cnf file. This script
|
||||||
@ -307,7 +307,7 @@ case "$mode" in
|
|||||||
|
|
||||||
exit $return_value
|
exit $return_value
|
||||||
else
|
else
|
||||||
log_failure_msg "Couldn't find MySQL server ($bindir/mysqld_safe)"
|
log_failure_msg "Couldn't find MariaDB server ($bindir/mysqld_safe)"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@ -321,12 +321,12 @@ case "$mode" in
|
|||||||
|
|
||||||
if (kill -0 $mysqld_pid 2>/dev/null)
|
if (kill -0 $mysqld_pid 2>/dev/null)
|
||||||
then
|
then
|
||||||
echo $echo_n "Shutting down MySQL"
|
echo $echo_n "Shutting down MariaDB"
|
||||||
kill $mysqld_pid
|
kill $mysqld_pid
|
||||||
# mysqld should remove the pid file when it exits, so wait for it.
|
# mysqld should remove the pid file when it exits, so wait for it.
|
||||||
wait_for_gone $mysqld_pid "$mysqld_pid_file_path"; return_value=$?
|
wait_for_gone $mysqld_pid "$mysqld_pid_file_path"; return_value=$?
|
||||||
else
|
else
|
||||||
log_failure_msg "MySQL server process #$mysqld_pid is not running!"
|
log_failure_msg "MariaDB server process #$mysqld_pid is not running!"
|
||||||
rm "$mysqld_pid_file_path"
|
rm "$mysqld_pid_file_path"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -337,7 +337,7 @@ case "$mode" in
|
|||||||
fi
|
fi
|
||||||
exit $return_value
|
exit $return_value
|
||||||
else
|
else
|
||||||
log_failure_msg "MySQL server PID file could not be found!"
|
log_failure_msg "MariaDB server PID file could not be found!"
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@ -355,10 +355,10 @@ case "$mode" in
|
|||||||
'reload'|'force-reload')
|
'reload'|'force-reload')
|
||||||
if test -s "$mysqld_pid_file_path" ; then
|
if test -s "$mysqld_pid_file_path" ; then
|
||||||
read mysqld_pid < "$mysqld_pid_file_path"
|
read mysqld_pid < "$mysqld_pid_file_path"
|
||||||
kill -HUP $mysqld_pid && log_success_msg "Reloading service MySQL"
|
kill -HUP $mysqld_pid && log_success_msg "Reloading service MariaDB"
|
||||||
touch "$mysqld_pid_file_path"
|
touch "$mysqld_pid_file_path"
|
||||||
else
|
else
|
||||||
log_failure_msg "MySQL PID file could not be found!"
|
log_failure_msg "MariaDB PID file could not be found!"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
@ -367,10 +367,10 @@ case "$mode" in
|
|||||||
if test -s "$mysqld_pid_file_path" ; then
|
if test -s "$mysqld_pid_file_path" ; then
|
||||||
read mysqld_pid < "$mysqld_pid_file_path"
|
read mysqld_pid < "$mysqld_pid_file_path"
|
||||||
if kill -0 $mysqld_pid 2>/dev/null ; then
|
if kill -0 $mysqld_pid 2>/dev/null ; then
|
||||||
log_success_msg "MySQL running ($mysqld_pid)"
|
log_success_msg "MariaDB running ($mysqld_pid)"
|
||||||
exit 0
|
exit 0
|
||||||
else
|
else
|
||||||
log_failure_msg "MySQL is not running, but PID file exists"
|
log_failure_msg "MariaDB is not running, but PID file exists"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
@ -380,17 +380,17 @@ case "$mode" in
|
|||||||
# test if multiple pids exist
|
# test if multiple pids exist
|
||||||
pid_count=`echo $mysqld_pid | wc -w`
|
pid_count=`echo $mysqld_pid | wc -w`
|
||||||
if test $pid_count -gt 1 ; then
|
if test $pid_count -gt 1 ; then
|
||||||
log_failure_msg "Multiple MySQL running but PID file could not be found ($mysqld_pid)"
|
log_failure_msg "Multiple MariaDB running but PID file could not be found ($mysqld_pid)"
|
||||||
exit 5
|
exit 5
|
||||||
elif test -z $mysqld_pid ; then
|
elif test -z $mysqld_pid ; then
|
||||||
if test -f "$lock_file_path" ; then
|
if test -f "$lock_file_path" ; then
|
||||||
log_failure_msg "MySQL is not running, but lock file ($lock_file_path) exists"
|
log_failure_msg "MariaDB is not running, but lock file ($lock_file_path) exists"
|
||||||
exit 2
|
exit 2
|
||||||
fi
|
fi
|
||||||
log_failure_msg "MySQL is not running"
|
log_failure_msg "MariaDB is not running"
|
||||||
exit 3
|
exit 3
|
||||||
else
|
else
|
||||||
log_failure_msg "MySQL is running but PID file could not be found"
|
log_failure_msg "MariaDB is running but PID file could not be found"
|
||||||
exit 4
|
exit 4
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
@ -398,7 +398,7 @@ case "$mode" in
|
|||||||
'configtest')
|
'configtest')
|
||||||
# Safeguard (relative paths, core dumps..)
|
# Safeguard (relative paths, core dumps..)
|
||||||
cd $basedir
|
cd $basedir
|
||||||
echo $echo_n "Testing MySQL configuration syntax"
|
echo $echo_n "Testing MariaDB configuration syntax"
|
||||||
daemon=$bindir/mysqld
|
daemon=$bindir/mysqld
|
||||||
if test -x $libexecdir/mysqld
|
if test -x $libexecdir/mysqld
|
||||||
then
|
then
|
||||||
@ -425,7 +425,7 @@ case "$mode" in
|
|||||||
*)
|
*)
|
||||||
# usage
|
# usage
|
||||||
basename=`basename "$0"`
|
basename=`basename "$0"`
|
||||||
echo "Usage: $basename {start|stop|restart|reload|force-reload|status|configtest} [ MySQL server options ]"
|
echo "Usage: $basename {start|stop|restart|reload|force-reload|status|configtest} [ MariaDB server options ]"
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
Loading…
x
Reference in New Issue
Block a user