Backporting patch for bug#15852074.
This commit is contained in:
parent
bb1b9f0f5c
commit
84b942d103
@ -416,7 +416,13 @@ case "$mode" in
|
|||||||
else
|
else
|
||||||
# Try to find appropriate mysqld process
|
# Try to find appropriate mysqld process
|
||||||
mysqld_pid=`pidof $libexecdir/mysqld`
|
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 "$use_mysqld_safe" = "0" ; then
|
if test "$use_mysqld_safe" = "0" ; then
|
||||||
lockfile=/var/lock/subsys/mysqlmanager
|
lockfile=/var/lock/subsys/mysqlmanager
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user