Parece que meu serviço httpd no centos não é capaz de criar o / var / run / httpd que faz com que ele se recuse a iniciar.
Só para lembrar a vocês que / var / run está apontando para / run
[root@build72 var]# ls -ld /var/run
lrwxrwxrwx. 1 root root 6 Oct 28 2014 /var/run -> ../run
/ run é um tempfs (o conteúdo é apagado após a reinicialização da máquina):
[root@build72 var]# mount | grep /run
tmpfs on /run type tmpfs (rw,nosuid,nodev,mode=755)
tmpfs on /run/user/0 type tmpfs (rw,nosuid,nodev,relatime,size=800948k,mode=700)
Eu sempre tenho que criar o / run / httpd para que meu serviço httpd comece, caso contrário ele irá:
mkdir /run/httpd
a saída em error_logs é a seguinte:
[Tue Nov 08 11:10:29.378421 2016] [auth_digest:notice] [pid 1370] AH01757: generating secret for digest authentication ...
[Tue Nov 08 11:10:29.378447 2016] [auth_digest:error] [pid 1370] (2)No such file or directory: AH01762: Failed to create shared memory segment on file /run/httpd/authdigest_shm.1370
[Tue Nov 08 11:10:29.378459 2016] [auth_digest:error] [pid 1370] (2)No such file or directory: AH01760: failed to initialize shm - all nonce-count checking, one-time nonces, and MD5-sess algorithm disabled
[Tue Nov 08 11:10:29.378462 2016] [:emerg] [pid 1370] AH00020: Configuration Failed, exiting
Versão do CentOS:
CentOS Linux release 7.2.1511 (Core)
link
[root@build72 var]# httpd -v
Server version: Apache/2.4.6 (CentOS)
Server built: Jul 18 2016 15:30:14
o selinux está desativado.
Qualquer ajuda com isso será apreciada. Obrigado!
Tags apache-2.4 service centos7 httpd