我知道线索Apache2 配置变量未定义但这里的问题很可能与新创建用户的所有权/权限有关,请参阅帖子底部以了解问题的假设。我在 Raspbian Jessie 中运行
sudo a2enmod headers
和
我运行sudo apache2 -k graceful
,但输出是
[Tue May 31 14:47:38.182913 2016] [core:warn] [pid 5212] AH00111: Config variable ${APACHE_LOCK_DIR} is not defined
[Mon Apr 21 17:36:38.019345 2016] [core:warn] [pid 5212] AH00111: Config variable ${APACHE_PID_FILE} is not defined
[Mon Apr 21 17:36:38.019370 2016] [core:warn] [pid 5212] AH00111: Config variable ${APACHE_RUN_USER} is not defined
[Mon Apr 21 17:36:38.019385 2016] [core:warn] [pid 5212] AH00111: Config variable ${APACHE_RUN_GROUP} is not defined
[Mon Apr 21 17:36:38.019414 2016] [core:warn] [pid 5212] AH00111: Config variable ${APACHE_LOG_DIR} is not defined
[Mon Apr 21 17:36:38.028756 2016] [core:warn] [pid 5212] AH00111: Config variable ${APACHE_LOG_DIR} is not defined
[Mon Apr 21 17:36:38.029032 2016] [core:warn] [pid 5212] AH00111: Config variable ${APACHE_LOG_DIR} is not defined
[Mon Apr 21 17:36:38.029056 2016] [core:warn] [pid 5212] 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}
执行source /etc/apache2/envvars
并运行该命令仍然会给出相同的输出。我不确定问题出在哪里。
HBruijn 的提议
- 该命令
sudo service apache2 graceful
似乎有效;输出[OK] Reloading webserver: apache2
。这样可以吗?那我应该检查什么?为什么那里会出现原始错误? - 然后命令
sudo apache2ctl graceful
又返回一个空行。这样可以吗?
为什么你会得到这样的输出apache2 -k graceful
?
答案1
在 debian 上,您应该使用服务 apache2 ...或 apache2ctl 脚本。
apache2 是二进制文件,直接调用它不会设置配置所需的所有环境变量。
apache2ctl graceful 没有返回任何内容是正常的。