Al ejecutar service apache start
, veo en el archivo de registro esta entrada:
[mpm_event:notice] [pid 1906:tid XXX] AH00489: Apache/2.4.23 (Unix)
OpenSSL/1.0.2g PHP/7.0.9 configured -- resuming normal operations
[core:notice] [pid 1906:tid XXX] AH00094: Command line: '/usr/sbin/httpd'
[mpm_event:notice] [pid 1906:tid XXX] AH00492: caught SIGWINCH, shutting down gracefully
y el servicio apache
no comienza? Puedo encontrar en Internet lo que SIGWINCH
significa [ Window size change
] pero en este caso no me ayuda mucho.
El archivo /etc/systemd/system/apache.service
:
[Unit]
Description=The Apache Webserver [FaF Compiled]
After=network.target nss-lookup.target time-sync.target
Before=getty@tty1.service plymouth-quit.service xdm.service
[Service]
Type=notify
PrivateTmp=true
ExecStart=/usr/sbin/httpd -k start
ExecReload=/usr/sbin/httpd -k graceful
ExecStop=/usr/sbin/httpd -k graceful-stop
KillMode=mixed
[Install]
WantedBy=multi-user.target
Alias=httpd.service apache.service
Ejecutando en SLES 12 SP1. He compilado Apache por mi cuenta. Comenzarlo apachectl -k start
funciona perfectamente y puedo acceder y ejecutar el código PHP.
Mi pregunta:
¿Qué estoy haciendo mal para que el apache
servicio no se inicie? Lo he habilitado con systemctl enable apache
. Este fue el resultado:
ln -s '/usr/lib/systemd/system/apache2.service' '/etc/systemd/system/httpd.service'
ln -s '/usr/lib/systemd/system/apache2.service' '/etc/systemd/system/apache.service'
ln -s '/usr/lib/systemd/system/apache2.service' '/etc/systemd/system/multi-user.target.wants/apache2.service'
SIGWINCH
hicieron fatales? La acción predeterminada es descartar la señal.