码迷,mamicode.com
首页 > 其他好文 > 详细

编译安装Apache2.4.10

时间:2014-09-24 00:43:45      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   div   sp   on   c   

1、先安装apr、apr-util、pcre、openssl

  安装apr

tar zxvf apr-***.tar.gz
cd apr-***/
./configure --prefix=/usr/local/apr
make && make install

  安装apr-util

tar zxvf apr-util-***.tar.gz
cd apr-util-***/
./configure --prefix=/usr/local/apr-util
make && make install

  安装pcre

tar zxvf pcre-***.tar.gz
cd pcre-***/
./configure --prefix=/usr/local/pcre
make && make install

  安装openssl

tar zxvf openssl-***.tar.gz
cd openssl-***/
./config --prefix=/usr/local/openssl -fPIC enable-shared
make && make install

2、安装Apache

tar zxvf httpd-2.4.10.tar.gz
cd httpd-2.4.10/
./configure --prefix=/usr/local/apache --enable-so --enable-cgi --enable-rewrite --with-ssl=/usr/local/openssl --enable-ssl --with-zlib --with-pcre=/usr/local/pcre --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --enable-mpms-shared=all --with-mpm=event
make && make install

 

编译安装Apache2.4.10

标签:style   blog   http   color   ar   div   sp   on   c   

原文地址:http://www.cnblogs.com/superaltman/p/3989570.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!