本文共 2494 字,大约阅读时间需要 8 分钟。
#####编译安装apache
浏览器下载
wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz
wget http://archive.apache.org/dist/apr/apr-util-1.3.12.tar.gz wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.10/pcre-8.10.zip wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.10/pcre-8.10.zip yum install unzip unzip -o pcre-8.10.zip ./configure --prefix=/usr/local/pcre make && make install wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz ./configure --prefix=/usr/local/apr make && make install wget http://archive.apache.org/dist/apr/apr-util-1.3.12.tar.gz make clean ./configure --prefix=/usr/local/apr-util -with-apr=/usr/local/apr make && make install rpm -qa|grep http* rpm -e --nodeps httpd-tools-2.2.15-47.el6.centos.x86_64 rpm -e --nodeps httpd-2.2.15-47.el6.centos.x86_64 rpm -qa|grep http* wget http://mirrors.cnnic.cn/apache/httpd/httpd-2.4.17.tar.gz tar zxf httpd-2.4.17.tar.gz cd httpd-2.4.17 ./configure --prefix=/usr/local/apache --enable-rewrite --enable-so --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-pcre=/usr/local/pcre /usr/local/apache/bin/apachectl start/stop/restart=====================
#1 安装依赖包
yum -y install libmcrypt-devel mhash-devel libxslt-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel zlib zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel libidn libidn-devel openssl openssl-devel #2 安装PHP ./configure --prefix=/application/php-5.4.38 --enable-fpm --with-mcrypt --enable-mbstring --disable-pdo --with-curl --disable-debug --disable-rpath --enable-inline-optimization --with-bz2 --with-zlib --enable-sockets --enable-sysvsem --enable-sysvshm --enable-pcntl --enable-mbregex --with-mhash --enable-zip --with-pcre-regex --with-mysql --with-mysqli --with-gd --with-jpeg-dir #4 安装apache前必须先安装 wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz wget http://archive.apache.org/dist/apr/apr-util-1.3.12.tar.gz wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.10/pcre-8.10.zip #3 apache安装 wget http://mirrors.cnnic.cn/apache/httpd/httpd-2.4.23.tar.gz ./configure --prefix=/usr/local/apache --enable-rewrite --enable-so --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-pcre=/usr/local/pcre --with-apxs2=/usr/local/bin/apxs make make install cd /usr/local/apache/conf cat httpd.conf|egrep -v ';|#|^$'本文转自cloves 51CTO博客,原文链接:http://blog.51cto.com/yeqing/1702851
转载地址:http://qeeel.baihongyu.com/