Se vc d� um ping "localhost" ele come�a a pingar o 127.0.0.1? Se n�o come�ar, pode ser que o seu /etc/hosts esteja com problema... Para iniciar um Interbase que uso em um cliente, uso o script:
#!/bin/bash # # /etc/rc.d/init.d/interbase # # Starts the interbase # # chkconfig: 35 97 97 # description: Start the interbase. # description(pt_BR): Inicia o interbase. # processname: ibmgr
# Source function library. . /etc/rc.d/init.d/functions
#
# See how we were called.
#
case "$1" in
start)
# Check if atd is already running
if [ ! -f /var/lock/subsys/interbase ]; then
echo "Starting: " "interbase"/opt/interbase/bin/ibmgr -start -forever > /dev/null 2>&1
if [ $? = 0 ];
then
echo_success
else
echo_failure
fi
touch /var/lock/subsys/interbase
fi
;;
stop)
echo "Stopping: " "interbase"/opt/interbase/bin/ibmgr -shut -user sysdba -password masterkey > /dev/null 2>&1
if [ $? = 0 ];
then
echo_success
else
echo_failure
fi
rm -f /var/lock/subsys/interbase ;;
reload|restart)
$0 stop
$0 start
;;
*)
echo "Usage: {start|stop|restart|reload}" "interbase"
exit 1
esacexit 0
Por�m, em novos clientes, tenho usado o Firebird ao inv�s do Interbase, ele j� tem RPM prontinho... Para baixar o RPM (ou .deb) para sua distribui��o, use: http://firebird.sourceforge.net/
Abra�os,
Jorge Eduardo Quint�o - NetSol Ltda Rua Domingos Vieira, 587 Conj. 1511-1519 http://www.netsol.com.br +55-31-3241-8001 --------------------------------------------------------------------------- Esta lista � patrocinada pela Conectiva S.A. Visite http://www.conectiva.com.br
Arquivo: http://bazar2.conectiva.com.br/mailman/listinfo/linux-br Regras de utiliza��o da lista: http://linux-br.conectiva.com.br FAQ: http://www.zago.eti.br/menu.html
