不重新编译apache添加安装mod_ssl模块和错误的处理


1、进入apache源码目录。

2、进入module文件夹下的ssl目录。

3、找到oepnssl 的include路径,ubuntu系统是在/usr/include/openssl目录。

4、运行apxs

# apxs -i -c -a -D HAVE_OPENSSL=1 -I /usr/include/openssl -lcrypto -lssl -ldl *.c 
# httpd -t
httpd: Could not reliably determine the server's fully qualified domain name, using 192.168.0.238 for ServerName
Syntax OK

提示syntax ok,重启apache。

Archives