« | October 2025 | » | 日 | 一 | 二 | 三 | 四 | 五 | 六 | | | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | | |
| 公告 |
暂无公告... |
Blog信息 |
blog名称:南海大狼的blogger 日志总数:41 评论数量:34 留言数量:-7 访问次数:271710 建立时间:2005年8月15日 |

| |
apache 启动 module ssl_module is already loaded, skipping" error 软件技术
南海大狼 发表于 2009/12/31 15:06:22 |
Two things you can check are your httpd.conf and ssl.conf files.In mine, the httpd.conf file contains:LoadModule ssl_module modules/mod_ssl.soand then just a few lines down:## Load config files from the config directory "/etc/httpd/conf.d".#Include conf.d/*.confSo this includes *.conf files listed in the conf.d directory (inmine, this is on the same directory level as the "conf" directorybelow /etc/httpd). My ssl.conf file is in this second directory andhas as one of its commands:LoadModule ssl_module modules/mod_ssl.soThis was triggering the same error you are seeing on your server.I kept trying to find out why this module was getting loaded twiceand finally ran it down. I just commented out the "LoadModule..."command in the httpd.conf file and the problem cleared up (since itwas only getting loaded once now instead of twice: once in thehttpd.conf file and again in the ssl.conf file).
基本上 Include conf.d/*.conf 重复载入导致
|
|
|