Script shell para iniciar o servidor mysql se ainda não estiver em execução

1

Eu tenho um shell scipt e em algum momento eu quero verificar se o mysql está rodando e iniciá-lo se não estiver. Estou tentando o seguinte, mas não tendo sorte:

set mysqlstatus = 'sudo /opt/local/bin/mysqladmin5 ping'
if ["$mysqlstatus" != 'mysqld is alive']
then
sudo /opt/local/share/mysql5/mysql/mysql.server start
fi
    
por Paula Fenik 05.01.2012 / 16:15

3 respostas

2

O script run-one é seu amigo:

sudo run-one /opt/local/share/mysql5/mysql/mysql.server start

Mais sobre o script run-one : link

Se você não puder instalar run-one por qualquer motivo,
em seguida, copie o seguinte código em um novo arquivo chamado 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 <[email protected]>
#
#    Authors:
#        Dustin Kirkland <[email protected]>
#
#    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" "$@"

Para dar permissão de execução:

chmod +x run-one

Por fim, use ./run-one ou defina corretamente sua variável de ambiente PATH para usá-la sem fornecer o diretório.

    
por 05.01.2012 / 17:38
1

Você também pode pesquisar o software chamado 'monit'. Sintaxe & O uso é bastante comum e simples.

    
por 05.01.2012 / 18:26
-2

Não é uma boa idéia matar o processo mysqld, pois isso pode levar à perda de dados ou a bancos de dados corrompidos. A maneira mais graciosa é usar o "mysqladmin shutdown".

    
por 04.04.2017 / 00:48