wait_for_ready () {
i=0
while test $i -ne $service_startup_timeout ; do
if $bindir/mysqladmin ping >/dev/null 2>&1; then
log_success_msg // ***Delete this function call***
return 0
elif kill -0 $! ; then
: # mysqld_safe is still running
else
# mysqld_safe is no longer running, abort the wait loop
break
fi
echo $echo_n ".$echo_c"
i=`expr $i + 1`
sleep 1
done
log_failure_msg
return 1
}
#
我簡單地透過刪除 /opt/lampp/bin/mysql.server 第 261 行中的 log_success_msg 函數呼叫來解決這個問題,這不是最優雅的解決方案,但很簡單。值得注意的是,此編輯不會影響功能。