AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message
(2)No such file or directory: AH02291: Cannot access directory '/private/var/log/apache2/' for main error log
AH00014: Configuration check failed
No tengo apache2
carpeta en /private/var/log/
y en/var/log/
Respuesta1
/var/log/apache2 debería existir en macOS ya que viene con su propio servidor Apache. Si no es así, puede intentar crearlo usted mismo nuevamente haciendo:
sudo mkdir /var/log/apache2 && sudo chown root:wheel /var/log/apache2
¿Estás intentando poner en funcionamiento el Apache Apache predeterminado o intentaste instalar uno tú mismo?
Puede verificar si Apache se está ejecutando con:
ps aux | grep httpd
Puede reiniciar (o iniciar en caso de que no se esté ejecutando) Apache de macOS con:
sudo apachectl restart