Apache 2.4 重新加载成功,但使用 SSL 时重启失败

Apache 2.4 重新加载成功,但使用 SSL 时重启失败

在 Apache 2.4 上,重新加载成功了,但是重新开始使用 SSL 时失败。或者换句话说,SSL 配置指令在执行服务时似乎运行良好重新加载但不是服务重新开始

以下命令序列:

service apache2 start
a2ensite secure.example.com
service apache2 reload

允许我浏览https://secure.example.com没有任何错误,但是随后service apache2 restart没有对任何配置文件进行任何临时更改导致 apache2 启动失败,并显示以下消息:

The apache2 instance did not start within 20 seconds. Please read the log files to discover problems

然后我可以使用:

a2dissite secure.example.com
service apache2 start
a2ensite secure.example.com
service apache2 reload

再次访问https://secure.example.com。这种情况似乎与 SSL 的使用有关,因为我可以从 secure.example.com 中注释掉 SSL 配置位,并且重新启动 Apache 而不会出现任何问题。

Ubuntu 13.10,Linux 3.0.20-xenU,Apache/2.4.6(Ubuntu),OpenSSL/1.0.1e

相关内容