13

我正在使用 Apache 版本 2.2.20 (ubuntu) 并尝试使用自定义 httpd.conf 设置,但是我收到以下错误消息,希望能给予我任何指导。我是开发团队的一员,并获得了这个自定义的 httpd.conf 文件,所以我并不认为它是问题的原因(但我并没有完全排除这种可能性)。

我运行命令“sudo apache2ctl -k restart”并得到以下结果

[Fri Jul 06 11:33:34 2012] [warn] module ssl_module is already loaded, skipping
[Fri Jul 06 11:33:34 2012] [warn] module rewrite_module is already loaded, skipping
httpd not running, trying to start
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs
Action '-k restart' failed.
The Apache error log may have more information.

如果我注释掉 httpd.conf 文件中的行(如下),我可以摆脱这两个警告。我真的想这样做吗?我可以去哪里验证这些模块是否已加载到其他地方并且在我的 conf 文件中将它们注释掉不会有任何伤害?

LoadModule ssl_module modules/mod_ssl.so
LoadModule rewrite_module modules/mod_rewrite.so

至于无法绑定到 80 端口的错误,我无法让它消失。当我执行“sudo netstat -lnp | grep :80”时,我得到以下信息

tcp        0      0 0.0.0.0:80       0.0.0.0:*      LISTEN      6233/apache2

我知道上面的输出意味着 apache 认为它正在运行,有一段时间我什至能够看到“它工作了!” 当我导航到 localhost 时的页面,但是现在当我转到该页面时,我只会在 localhost 端口 443 上找到“未找到 Apache/2.2.20 (ubuntu) 服务器”。此外,我似乎无法杀死运行“kill -9 6233”命令的 apache 进程,只会导致 apache 的 PID 发生变化(例如从 6233 到 6234)。我也尝试使用命令“sudo etc/init.d/apache2 stop”,它会产生“* Stopping web server apache2 [ OK ]”消息,但我再次看到 apache2 进程占用了端口 80。

对任何这些问题的想法将不胜感激。

4

2 回答 2

15

看:“模块 xxx_module已加载

答:您不止一次加载这些模块。尝试搜索并评论/删除有问题的行:

在 Centos/RHEL 中:

grep ssl_module -rI /etc/httpd/*   
/etc/httpd/conf/httpd.conf:LoadModule ssl_module /usr/lib64/httpd/modules/mod_ssl.so
/etc/httpd/conf.d/ssl.conf:LoadModule ssl_module modules/mod_ssl.so

在这种情况下 ^ 我在其中注释掉了/etc/httpd/conf/httpd.conf所有 SSL 内容/etc/httpd/conf.d/ssl.conf

相同的rewrite_module

grep rewrite_module -rI /etc/httpd/*

在 Debian/Ubuntu 中:

grep ssl_module -rI /etc/apache2/*
于 2014-04-15T17:48:56.620 回答
2

我有一个类似的问题,我使用带密码的 SSL 密钥。我为使其运行所做的工作是:

sudo pkill apache2
sudo /etc/init.d/apache2 start

我不建议Listen *:80从您的 Apache 配置中删除。

于 2012-11-13T20:23:54.207 回答