Ocorreu um erro no apche localhost configtest

Ocorreu um erro no apche localhost configtest
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

Eu não tenho apache2pasta dentro /private/var/log/e dentro/var/log/

Responder1

/var/log/apache2 deve existir no macOS, pois vem com seu próprio servidor Apache. Caso contrário, você pode tentar criá-lo novamente fazendo:

sudo mkdir /var/log/apache2 && sudo chown root:wheel /var/log/apache2

Você está tentando colocar o macOS Apache padrão em funcionamento ou tentou instalar um sozinho?

Você pode verificar se o Apache está sendo executado com:

ps aux | grep httpd

Você pode reiniciar (ou iniciar caso não esteja em execução) o Apache do macOS com:

sudo apachectl restart

informação relacionada