У меня есть сценарий оболочки, и в какой-то момент я хочу проверить, запущен ли mysql, и запустить его, если это не так. Я пытаюсь сделать следующее, но мне не повезло:
set mysqlstatus = `sudo /opt/local/bin/mysqladmin5 ping`
if ["$mysqlstatus" != 'mysqld is alive']
then
sudo /opt/local/share/mysql5/mysql/mysql.server start
fi
Сценарий run-one
твой друг:
sudo run-one /opt/local/share/mysql5/mysql/mysql.server start
Больше о run-one
сценарий:
http://blog.dustinkirkland.com/2011/02/introduction-run-one-and-run-this-one.html
Если вы не можете установить run-one
для любой причины,
затем скопируйте следующий код в новый файл с именем run-one
:
#!/bin/sh -e
#
# run-one - run just one instance at a time of some command and
# unique set of arguments (useful for cronjobs, eg)
#
# run-this-one - kill any identical command/args processes
# before running this one
#
# Copyright (C) 2010 Dustin Kirkland <kirkland@ubuntu.com>
#
# Authors:
# Dustin Kirkland <kirkland@ubuntu.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
PROG="run-one"
# Cache hashes here, to keep one user from DoS'ing another
DIR="$HOME/.cache/$PROG"
mkdir -p "$DIR"
# Calculate the hash of the command and arguments
CMDHASH=$(echo "$@" | md5sum | awk '{print $1}')
FLAG="$DIR/$CMDHASH"
# Handle run-this-one invocation, by killing matching process first
case "$(basename $0)" in
run-this-one)
ps="$@"
# Loop through matching pids
for p in $(pgrep -u "$USER" -f "^$ps$" || true); do
# Try to kill pid
kill $p
# And then block until killed
while ps $p >/dev/null 2>&1; do
kill $p
sleep 1
done
done
# NOTE: Would love to use lsof, but it seems that flock()'s
# are not persistent enough, sometimes; use pgrep/pkill now.
# pid=$(lsof "$FLAG" | grep "^flock" | awk '{print $2}') || true
# [ -z "$pid" ] || kill $pid
;;
esac
# Run the specified commands, assuming we can flock this command string's hash
flock -xn "$FLAG" "$@"
Чтобы дать разрешение на выполнение:
chmod +x run-one
Наконец, используйте ./run-one
или установите правильно ваш PATH
переменная окружения, чтобы использовать ее без указания каталога.
Вы также можете изучить программу под названием «monit». Синтаксис и использование довольно распространены и просты.
Не рекомендуется останавливать процесс mysqld, поскольку это может привести к потере данных или повреждению баз данных. Изящный способ - использовать mysqladmin shutdown.