Woooo!
Ho scritto la mia versione che funziona praticamente, con un po 'di hacking e utilizzo di file conf -D NO_DETACH
.
Prima di tutto, ho dovuto impostare User
, Group
e PidFile
in /etc/apache2/apache2.conf
mano, piuttosto che averli proveniente da /etc/apache2/envvars
. Non sono riuscito a trovare un modo per esportare correttamente quei var (ho provato entrambi env
e export
come su http://manpages.ubuntu.com/manpages/lucid/man5/init.5.html , ma non va bene).
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
Quindi, questo è il mio lavoro /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
Posso fare start|stop|status|reload apache2
e ottenere risultati significativi; se ho kill -9
il processo master apache, viene rigenerato praticamente immediatamente e si avvia e si arresta all'avvio come previsto. Quindi funziona ragionevolmente bene, credo.
Ci sono state delle cose che ho provato che non riuscivo a lavorare.
- Ho cercato di rimuovere
-D NO_DETACH
, insieme a:
aspettiamo forchetta
aspettiamo demone
Non è stato possibile avviare il servizio.
- Ho provato a usare un metodo simile
/etc/apache2/envvars
per popolare le ${APACHE_*}
variabili:
esporta APACHE_RUN_USER = www-data
esporta APACHE_RUN_GROUP = www-data
export APACHE_PID_FILE = / var / run / apache2.pid
Ciò non è stato avviato e ha prodotto un errore apache2: bad user name ${APACHE_RUN_USER}
.
Provato output della console e opzioni predefinite della console; a questo punto mi stavo davvero sforzando di cercare di ottenere messaggi di errore significativi. Sembrava non fare differenza.
console output
Questo è stato utile per il debug dei messaggi apache:
exec /usr/sbin/apache2 -X -e debug -E /var/log/apache2/foo.log
Questo è stato un altro tentativo di non modificare /etc/apache2/apache2.conf
che non è riuscito:
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