环境:ubuntu11.04,采用源码安装,版本是2.2.15.

已使用apt-get install命令安装了openssl和 libcurl3 libcurl3-dev

安装命令:

sudo ./configure –enable-so –enable-proxy –enable-proxy-ajp –enable-ssl –prefix=/usr/local/apache2 && sudo make && sudo make install

编译支持so,proxy,proxy-ajp和ssl,安装路径/usr/local/apache2

错误:执行到configure时,出现error:No recognized SSL/TLS toolkit detected

原因:Apache needs the header files in order to build the SSL module.

解决:Install openssl-devel (libssl-dev on debian) 。

执行 sudo apt-get install libssl-dev

相关文章:

  • 2022-01-26
  • 2022-01-09
  • 2021-12-05
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-13
  • 2022-12-23
  • 2022-12-23
  • 2021-09-11
  • 2021-07-17
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案