isilver
(usa CentOS)
Enviado em 10/11/2010 - 15:55h
Bom, instalei a versão 2.0.6 ai não criou nenhum arquivo de inicialização, então procurei na internet e disseram pra criar um arquivo chamado fbmgr, criei, com o seguinte conteúdo:
#!/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
Porém quando vou iniciar o firebird por ele dá o seguinte erro:
/etc/rc.d/init.d/functions: line 226: runuser: command not found
Se alguém puder me ajudar agradeço.