Status do Serviço Firebird
Publicado por Thiago M 28/12/2005
[ Hits: 18.909 ]
Script que executa Start , Stop, Restart e Status do banco de dados firebird
#!/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
Criando Boot pelo USB para o VirtualBox no Linux KDu5
Enviar e-mail via shell script usando e-mail autenticado
Recriando /dev/null facilmente
Configurando a raiz do seu servidor apache facilmente.
Enviar mensagem ao usuário trabalhando com as opções do php.ini
Meu Fork do Plugin de Integração do CVS para o KDevelop
Compartilhando a tela do Computador no Celular via Deskreen
Como Configurar um Túnel SSH Reverso para Acessar Sua Máquina Local a Partir de uma Máquina Remota
Configuração para desligamento automatizado de Computadores em um Ambiente Comercial
Compartilhamento de Rede com samba em modo Público/Anônimo de forma simples, rápido e fácil
Cups: Mapear/listar todas as impressoras de outro Servidor CUPS de forma rápida e fácil
Criando uma VPC na AWS via CLI
Tem como instalar o gerenciador AMD Adrenalin no Ubuntu 24.04? (16)
Arch Linux - Guia para Iniciantes (2)
Problemas ao instalar o PHP (11)
Tenho dois Link's ( IP VÁLIDOS ), estou tentando fazer o failover... (0)