Status do Serviço Firebird

Publicado por Thiago M 28/12/2005

[ Hits: 18.698 ]

Download rc.firebird




Script que executa Start , Stop, Restart e Status do banco de dados firebird

  



Esconder código-fonte

#!/bin/sh

# chkconfig: 345 20 80
# description: Start/Stop firebird database server
#
# This file belongs in /etc/init.d where it will be run
# on system startup and shutdown to start the background
# Firebird/interbase database server daemon

FIREBIRD=/opt/firebird
ISC_USER=SYSDBA
ISC_PASSWORD=masterkey
FBRunUser=firebird
# WARNING: in a real-world installation, you should not put the
# SYSDBA password in a publicly-readable file.
# Eventually this file should not need to contain any passwords.
# as root user alone should be sufficient privledge to stop/start
# the server.

export FIREBIRD
export ISC_USER
export ISC_PASSWORD

# Check the file is there and is executable.
[ -x $FIREBIRD/bin/fbmgr ] || exit 0


# See how we were called.
case "$1" in
  start)
   echo -n "Starting Firebird server: "
        $FIREBIRD/bin/fbmgr -start 
   
   RETVAL=$?
   ;;
  restart|reload)
   $0 stop
   $0 start
   RETVAL=$?
   ;;
  stop)
        echo -n "Parando serviço Firebird ..."
   if ps -e | grep fbguard > /dev/null
   then
      killall fbguard
      killall fbserver
   fi
        echo "done."
        RETVAL=0
        ;;
  status)
   echo -n "Firebird Service Status ..."
   if ps -e | grep fbguard > null
   then
      echo "Running"
   else
      echo "Stoped"
   fi
   ;;
  *)
   echo "Usage: firebird {start|stop|restart}"
   exit 1
esac

exit $RETVAL

Scripts recomendados

Criação de ports para slackware

Gerenciador Simples de Empresa

Acesso remoto via SSH sem senha

Executando comandos remotos usando sshpass

Acompanhamento de log squid com hora real


  

Comentários
[1] Comentário enviado por removido em 25/01/2006 - 16:04h

Mas esse script é do próprio engine do FIREBIRD não é?

[2] Comentário enviado por ThiagoMarques em 26/01/2006 - 08:25h

kra esse script eu me baseei em um q eu tinha do squid e adaptei algumas coisas que encontrei na internet. Agora eu não sei se existe algum script desses que ja vem com o firebird, no pacote que instalei não tinha.


Contribuir com comentário




Patrocínio

Site hospedado pelo provedor RedeHost.
Linux banner

Destaques

Artigos

Dicas

Tópicos

Top 10 do mês

Scripts