共计 2043 个字符,预计需要花费 6 分钟才能阅读完成。
CentOS 6.5 平台离线安装 Apache2.4
一、下载 Apache 2.4
- http://httpd.apache.org/download.cgi
- http://mirrors.cnnic.cn/apache//httpd/httpd-2.4.10.tar.gz
解决依赖关系的包
- http://www.eu.apache.org/dist/apr/apr-1.5.1.tar.gz
- http://www.eu.apache.org/dist/apr/apr-util-1.5.4.tar.gz
- http://softlayer-sng.dl.sourceforge.net/project/pcre/pcre/8.36/pcre-8.36.tar.gz
二、解压
tar -zxf httpd-2.4.10.tar.gz
mv httpd-2.4.10.tar.gz Apache
三、处理依赖关系
解决 apr not found 问题
1 tar -zxf apr-1.5.1.tar.gz
2 cd apr-1.5.1
3 ./configure –prefix=/usr/local/apr
4 make && make install
解决 APR-util not found 问题
1 tar -zxf apr-util-1.3.12.tar.gz
2 cd apr-util-1.3.12
3 ./configure –prefix=/usr/local/apr-util -with- apr=/usr/local/apr/bin/apr-1-config
4 make && make install
解决 pcre 问题
1 tar -zxf pcre-8.36.tar.gz
2 cd pcre-8.36
3 ./configure –prefix=/usr/local/pcre
4 make && make install
四、卸载自带的 apache
停止 HTTPD 服务,找到安装目了删除安装文件夹,再删除配置文件
五、编译安装
./configure –prefix=/usr/local/apache2 –enable-deflate –enable-expires –enable-headers –enable-modules=most –enable-so –with-mpm=worker –enable-rewrite –with-apr=/usr/local/apr –with-apr-util=/usr/local/apr-util –with-pcre=/usr/local/pcre
1 make
2 make install
五、卸载 apache
源码编译安装时通过 –prefix 参数指定了安装目录,先停止所有服务,把安装目录文件夹删除,然后再到 /etc 配置文件下删除配置文件。
然后再通过 find 命令确定一下就可以了
六、添加为服务
cp /usr/local/apache2/bin/apachectl /etc/rc.d/init.d/httpd
vi /etc/rc.d/init.d/httpd
添加 (#!/bin/sh 下面)
# chkconfig: 2345 50 90
# description: Activates/Deactivates Apache Web Server
运行 chkconfig 把 Apache 添加到系统的启动服务组里面:
# chkconfig –add httpd
# chkconfig httpd on
启动服务
service httpd start
Ubuntu Server 14.04 安装 Web 服务器 (Linux+Apache+MySQL+PHP) http://www.linuxidc.com/Linux/2015-06/119061.htm
Linux 下安装配置 PHP 环境 (Apache2) http://www.linuxidc.com/Linux/2015-05/118062.htm
Ubuntu 13.04 安装 LAMP\Vsftpd\Webmin\phpMyAdmin 服务及设置 http://www.linuxidc.com/Linux/2013-06/86250.htm
CentOS 5.9 下编译安装 LAMP(Apache 2.2.44+MySQL 5.6.10+PHP 5.4.12) http://www.linuxidc.com/Linux/2013-03/80333p3.htm
RedHat 5.4 下 Web 服务器架构之源码构建 LAMP 环境及应用 PHPWind http://www.linuxidc.com/Linux/2012-10/72484p2.htm
Apache 的详细介绍 :请点这里
Apache 的下载地址 :请点这里
更多 CentOS 相关信息见 CentOS 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=14
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2015-08/121073.htm