Sistema operativo
Red Hat Enterprise Linux Server versione 7.0 (Maipo)
Descrizione
L'errore:
httpd: apr_sockaddr_info_get() failed for rhel7
appare all'avvio del demone del server web apache httpd
. Può essere visualizzato durante l'esecuzione del comando httpd service status:
# service httpd status Redirecting to /bin/systemctl status httpd.service httpd.service - The Apache HTTP Server Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled) Active: active (running) since Thu 2014-09-04 17:28:52 WST; 1min 25s ago Main PID: 2303 (httpd) Status: "Total requests: 0; Current requests/sec: 0; Current traffic: 0 B/sec" CGroup: /system.slice/httpd.service ├─2303 /usr/sbin/httpd -DFOREGROUND ├─2304 /usr/sbin/httpd -DFOREGROUND ├─2305 /usr/sbin/httpd -DFOREGROUND ├─2306 /usr/sbin/httpd -DFOREGROUND ├─2307 /usr/sbin/httpd -DFOREGROUND └─2308 /usr/sbin/httpd -DFOREGROUND Sep 04 17:28:32 rhel7 systemd[1]: Starting The Apache HTTP Server... Sep 04 17:28:47 rhel7 httpd[2303]: AH00557: httpd: apr_sockaddr_info_get() failed for rhel7
Soluzione:
In questo caso rhel7 è il nome host effettivo per questo sistema. Per correggere il messaggio di errore precedente:
# echo 'ServerName 127.0.0.1' >> /etc/httpd/conf/httpd.conf
e riavvia il tuo demone del server web Apache httpd per applicare le modifiche:
# service httpd restart