weldatribo
(usa Red Hat)
Enviado em 11/09/2008 - 12:39h
Moreira ...
Documentação sobre firebird você pode obter no
www.firebirdsql.org.
Eu uso esse script para inicialização do firebird. Você deve mudar ele conforme sua compilação.
#!/bin/sh
. /etc/rc.d/init.d/functions
FIREBIRD=/opt/firebird
FBRunUser=firebird
pidfile=/var/run/firebird/`basename $0`.pid
export FIREBIRD
[ -x $FIREBIRD/bin/fbmgr ] || exit 1
case "$1" in
start)
echo -n "Starting Firebird server: "
daemon --user $FBRunUser $FIREBIRD/bin/fbmgr -pidfile $pidfile -start -forever
RETVAL=$?
echo
;;
stop)
echo -n "Stopping Firebird server: "
if [ -f $pidfile ]
then
kill `cat $pidfile`
fi
RETVAL=$?
# echo
# [ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/identd
;;
status)
status fbserver
RETVAL=$?
;;
restart|reload)
$0 stop
sleep 1
$0 start
RETVAL=$?
;;
*)
echo "Usage: firebird {start|stop|status|restart|reload}"
exit 1
esac
exit $RETVAL
Qualquer dificuldade posta novamente.
WeldaTribo
Linux - Abrindo nossas mentes...