Woooo!
He escrito mi propia versión que está funcionando bastante bien, con algo de pirateo y uso de archivos conf -D NO_DETACH
.
En primer lugar, tuve que conjunto User
, Group
y PidFile
en /etc/apache2/apache2.conf
forma manual, en lugar de tenerlas que viene de /etc/apache2/envvars
. No pude encontrar una manera de exportar esos vars correctamente (probé ambos env
y export
según http://manpages.ubuntu.com/manpages/lucid/man5/init.5.html , pero no es bueno).
root@lucid:/etc/apache2# diff -u apache2.conf.orig apache2.conf
--- apache2.conf.orig 2010-09-20 13:46:33.857868534 +0930
+++ apache2.conf 2010-09-20 13:47:22.377842204 +0930
@@ -63,7 +63,7 @@
# identification number when it starts.
# This needs to be set in /etc/apache2/envvars
#
-PidFile ${APACHE_PID_FILE}
+PidFile /var/run/apache2.pid
#
# Timeout: The number of seconds before receives and sends time out.
@@ -142,8 +142,8 @@
</IfModule>
# These need to be set in /etc/apache2/envvars
-User ${APACHE_RUN_USER}
-Group ${APACHE_RUN_GROUP}
+User www-data
+Group www-data
#
# AccessFileName: The name of the file to look for in each directory
Entonces, este es mi trabajo /etc/init/apache2.conf
:
# apache2 - http server
#
# Apache is a web server that responds to HTTP and HTTPS requests.
# Required-Start: $local_fs $remote_fs $network $syslog
# Required-Stop: $local_fs $remote_fs $network $syslog
description "apache2 http server"
start on runlevel [2345]
stop on runlevel [!2345]
pre-start script
mkdir -p /var/run/apache2 || true
install -d -o www-data /var/lock/apache2 || true
# ssl_scache shouldn't be here if we're just starting up.
# (this is bad if there are several apache2 instances running)
rm -f /var/run/apache2/*ssl_scache* || true
end script
# Give up if restart occurs 10 times in 30 seconds.
respawn limit 10 30
exec /usr/sbin/apache2 -D NO_DETACH
respawn
Puedo hacer start|stop|status|reload apache2
y obtener resultados significativos; Si kill -9
el proceso de Apache maestro, se reaparece casi inmediatamente, y comienza y se detiene en el arranque como se esperaba. Así que creo que funciona bastante bien.
Intenté cosas que no pude conseguir trabajando.
- Intenté eliminar
-D NO_DETACH
, junto con:
esperar tenedor
esperar demonio
Eso no pudo iniciar el servicio.
- Intenté usar un método similar
/etc/apache2/envvars
para poblar las ${APACHE_*}
variables:
export APACHE_RUN_USER = www-data
export APACHE_RUN_GROUP = www-data
export APACHE_PID_FILE = / var / run / apache2.pid
Eso no pudo comenzar y produjo un error al respecto apache2: bad user name ${APACHE_RUN_USER}
.
Probado salida de consola y opciones predeterminadas de consola; en este punto, realmente estaba fallando sobre tratar de obtener mensajes de error significativos. Parecía no hacer la diferencia.
console output
Esto fue útil para depurar mensajes de apache:
exec /usr/sbin/apache2 -X -e debug -E /var/log/apache2/foo.log
Este fue otro intento de no modificar /etc/apache2/apache2.conf
que falló:
exec APACHE_RUN_USER=www-data APACHE_RUN_GROUP=www-data APACHE_PID_FILE=/var/run/apache2.pid /usr/sbin/apache2 -D NO_DETACH -e debug -E /var/log/apache2/foo.log