Linux软件安装-----apache安装

一.

./configure --prefix=/usr/local/http2

--enable-modules=all    

--enble-mods-shared=all

开启模块共享:

要把全部功能模块的程序内容编译到apache本身软件里面

好处:模块调用速度快

缺点:apache本身软件运行速度较慢

--enable-so

apache可以识别 .so 后缀的模块文件

二. make 

三. make install

原文地址:https://www.cnblogs.com/w10234/p/6645011.html