我使用了代码sudo apt-get install apache2
。之后我尝试打开它,它给了我这个
[Thu Jan 26 11:39:14.983776 2017] [core:warn] [pid 13237] AH00111:
Config variable ${APACHE_LOG_DIR} is not defined
AH00526: Syntax error on line 74 of /etc/apache2/apache2.conf:
Invalid Mutex directory in argument file:${APACHE_LOCK_DIR}
我能做些什么?
答案1
为了启动 apache,您需要运行以下命令之一:
sudo apache2ctl start
sudo service apache2 start
sudo systemctl start apache2
这些命令将加载环境变量。apache2
单独运行不会起作用,因为您将缺少运行 apache 所需的步骤。