Tema : Interbase / Firebird
Descripción : ¿Porque en Ubuntu Dapper LTS tengo problemas al iniciar el demonio de Firebird?
Respuesta:
Cada vez que reinicias el servidor o el deminio de Firebird, el directorio /var/run está vacío, justo después de ...
# Check the file is there and is executable.
MANAGER=$FIREBIRD/bin/fbmgr.bin
[ -x $MANAGER ] || exit 0
... agrega las siguientes líneas al script /etc/init.d/firebird2.
Código:
if [ ! -d /var/run/firebird2 ]
then
cd /var/run
mkdir firebird2
chmod -f 770 firebird2
chown -f firebird:firebird firebird2
fi