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
У меня нет apache2
папки в /private/var/log/
и в/var/log/
решение1
/var/log/apache2 должен существовать на macOS, поскольку он поставляется с собственным сервером Apache. Если его там нет, вы можете попробовать создать его самостоятельно, выполнив:
sudo mkdir /var/log/apache2 && sudo chown root:wheel /var/log/apache2
Вы пытаетесь запустить Apache по умолчанию в macOS или пытались установить его самостоятельно?
Проверить, запущен ли Apache, можно с помощью:
ps aux | grep httpd
Вы можете перезапустить (или запустить, если он не запущен) Apache в macOS с помощью:
sudo apachectl restart