mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
local merge.
This commit is contained in:
commit
b350990a11
1 changed files with 7 additions and 1 deletions
|
@ -360,7 +360,13 @@ case "$mode" in
|
|||
else
|
||||
# Try to find appropriate mysqld process
|
||||
mysqld_pid=`pidof $libexecdir/mysqld`
|
||||
if test -z $mysqld_pid ; then
|
||||
|
||||
# test if multiple pids exist
|
||||
pid_count=`echo $mysqld_pid | wc -w`
|
||||
if test $pid_count -gt 1 ; then
|
||||
log_failure_msg "Multiple MySQL running but PID file could not be found ($mysqld_pid)"
|
||||
exit 5
|
||||
elif test -z $mysqld_pid ; then
|
||||
if test -f "$lock_file_path" ; then
|
||||
log_failure_msg "MySQL is not running, but lock file ($lock_file_path) exists"
|
||||
exit 2
|
||||
|
|
Loading…
Reference in a new issue