Apache 安装,


1.编译方法1


./configure --prefix=/usr/local/apache \

--with-mpm=prefork \

--enable-so \

--enable-modules="all" \

--enable-mods-shared="all"

make && make

cp support/apachectl /etc/init.d/httpd

chmod +x /etc/init.d/httpd


2.编译方法2


./configure --prefix=/usr/local/apache \

--enable-so \

--enable-rewrite \

--with-mpm=worker

make && make install


3.查看Apache 静态模块


/usr/local/apache/bin/apachectl -l


4.查看动态模块


ls /usr/local/apache/modules


5.启动Apache


/usr/local/apache/bin/apachectl start



本文转自 dengaosky 51CTO博客,原文链接:http://blog.51cto.com/dengaosky/1855308,如需转载请自行联系原作者

相关内容