Installation Instructions
Installation Environment: CentOS-6.3
Installation method: Source code compiled and installed
Software: httpd-2.2.6.tar.gz | pcre-8.32.tar.gz | apr-1.4.6.tar.gz | Apr-util-1.5.1.tar.gz
: http://mirror.bjtu.edu.cn/apache/httpd/
http://apr.apache.org/download.cgi
Http://jaist.dl.sourceforge.net/project/pcre/pcre
Installation Location:/urs/local/apache
Installation Prerequisites
The system has GCC and cmake installed, please refer to CentOS-6.3 installation configuration CMake if not installed.
Perform the following actions:
#检查是否安装了apache [Email protected]/]# Rpm-qa | grep httpd Httpd-2.2.15-15.el6.centos.1.x86_64 Httpd-tools-2.2.15-15.el6.centos.1.x86_64 #卸载系统自带的apache [Email protected]/]# rpm-e--nodeps httpd-2.2.15-15.el6.centos.1.x86_64 [Email protected]/]# rpm-e--nodeps httpd-tools-2.2.15-15.el6.centos.1.x86_64#使用yum卸载 [email protected] apache]# Yum remove Apache #检验apr版本, uninstall and install the new version [Email protected] apache]# Rpm-qa | grep Apr Apr-1.3.9-5.el6_2.x86_64 Apr-util-1.3.9-3.el6_0.1.x86_64 Apr-util-ldap-1.3.9-3.el6_0.1.x86_64 #卸载apr [email protected] apache]# Yum Remove Apr Yum Remove apr-util-devel Apr apr-util-mysql apr-docs apr-devel apr-util Apr-util-docs #安装pcre [Email protected] local]# tar-zxv-f pcre-8.32.tar.gz [Email protected] local]# CD pcre-8.32 [Email protected] apr-1.4.6]#./configure [[email protected] apr-1.4.6]# make [[email protected] apr-1.4.6]# make install #安装新版本apr [Email protected] local]# tar-zxv-f apr-1.4.6.tar.gz [Email protected] local]# CD apr-1.4.6 [Email protected] apr-1.4.6]#/configure--PREFIX=/USR/LOCAL/APR [[email protected] apr-1.4.6]# make [[email protected] apr-1.4.6]# make install #安装apr-util [Email protected] local]# tar-zxv-f apr-util-1.5.1.tar.gz [Email protected] local]# CD apr-util-1.5.1 [Email protected] apr-util-1.5.1]#/configure--prefix=/usr/local/apr-util--with-apr=/usr/local/apr [[email protected] apr-util-1.5.1]# make [[email protected] apr-util-1.5.1]# make install |
Installing Apache
Upload httpd-2.4.3.tar.gz to/usr/local and do the following:
#执行安装 [Email protected] local]# cd/usr/local [Email protected] local]# tar-zxv-f httpd-2.4.3.tar.gz #解压压缩包 [Email protected] local]# RM-RF httpd-2.4.3.tar.gz #删除压缩包 [Email protected] local]# MV httpd-2.4.3 Apache [[Email protected] local]# CD Apache #设置参数安装 [Email protected] php5.4]#/configure--prefix=/usr/local/apache--with-apr=/usr/local/apr--with-apr-util=/usr/ local/apr-util/ [[email protected] php5.4]# make [[email protected] php5.4]# make install |
Verifying the installation
To start the Apache server:
[[email protected]/]#/usr/local/apache/bin/apachectl start |
Using Browser access: http://192.168.15.239/The following message appears:
Congratulations, the installation is successful!!
CentOS-6.3 Installation Configuration Apache2.2.6