MySQLが生きているか確認する簡易コマンド

mysqladmin ping -h{hostname} -u{user} -p{password}

if [ ! $? -eq 0 ]; then
exit
fi