您当前的位置:首页 > 帮助中心 > 阿里云服务器知识库 >

服务器如何编译安装Apache2.2.29

编译安装Apache2.2.29



1)下载apache
http://httpd.apache.org/
1.png 

2)源码安装的步骤
1、解压软件源码包,并进入解压后的目录
2、./configure  预编译,也叫配置操作,源码安装的第一步,主要的作用是对即将安装的软件进行配置,比如安装路径、开启或关闭哪些功能。
3、make  编译操作,生成makefile文件,正式安装时以此为依据进行安装。
4、make install  正式安装。


3)正式安装apache
# tar zxvf httpd-2.2.29.tar.gz
# cd httpd-2.2.29
# yum install make gcc automake autoconf libtool -y
# ./configure --prefix=/usr/local/apache --enable-shared=max --enable-module=most --enable-so
config.status: creating support/phf_abuse_log.cgi
config.status: creating support/split-logfile
config.status: creating build/rules.mk
config.status: creating build/pkg/pkginfo
config.status: creating build/config_vars.sh
config.status: creating include/ap_config_auto.h
config.status: executing default commands

————预编译没有报错,成功。
# make
pd-2.2.29/srclib/apr/libapr-1.la -lrt -lcrypt -lpthread
make[1]: Leaving directory `/root/httpd-2.2.29'

————make无报错,成功。
# make install
mkdir /usr/local/apache/man
mkdir /usr/local/apache/man/man1
mkdir /usr/local/apache/man/man8
mkdir /usr/local/apache/manual
make[1]: Leaving directory `/root/httpd-2.2.29'

————安装成功
# /usr/local/apache/bin/apachectl start   
httpd: apr_sockaddr_info_get() failed for VM_198_236_centos
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

————启动apache,打开测试页面查看是否正常
————该提示对启动服务没影响,将该台服务器的主机名加到 /etc/hosts 中即可解决。
# hostname
VM_198_236_centos
# vi /etc/hosts
127.0.0.1       TENCENT64.site TENCENT64 VM_198_236_centos
# /usr/local/apache/bin/apachectl stop
# /usr/local/apache/bin/apachectl start
————启动apache无报错,测试页面正常,apache安装成功。

2.png 


接下来进行源码安装PHP,请参考下面教程:
http://bbs.qcloud.com/forum.php?mod=viewthread&tid=4346&extra=page%3D1

Apache+PHP整合
# cp /usr/local/apache/conf/httpd.conf /usr/local/apache/conf/httpd.conf.backup
# vi /usr/local/apache/conf/httpd.conf
配置文件最后添加如下 :
 
SetHandler application/x-httpd-php 
 

 
SetHandler application/x-httpd-php 
 

 
SetHandler application/x-httpd-php-source 
 
# /usr/local/apache/bin/apachectl stop
# /usr/local/apache/bin/apachectl start
# vi /usr/local/apache/htdocs/test.php

phpinfo();
?> 

浏览器测试页面:测试成功

3.png 


Apache启动、停止、重启的方法
# /usr/local/apache/bin/apachectl start            启动
# /usr/local/apache/bin/apachectl stop            停止
# /usr/local/apache/bin/apachectl -k restart    重启动
# tail –f /usr/local/apache/logs/error_log         查看默认的错误日志


注:此 方法不限于云服务器,传统服务器也可使用。


以上回复如果还未能解决您的问题,请联系凯铧互联售后技术支持。以上总结了服务器如何编译安装Apache2.2.29说明。阿里云代理商凯铧互联提供阿里云服务器/企业邮箱等产品的代购服务,同样的品质,更多贴心的服务,更实惠的价格。 阿里云代理商凯铧互联会为您提供一对一专业全面的技术服务,同时还能为您提供阿里云其他产品购买的专属折扣优惠。通过凯铧互联购买可以获得折上折优惠!若您需要帮助可以直接联系我方客服,阿里云代理商凯铧互联专业技术团队为您提供全面便捷专业的7x24技术服务。 电话专线:136-5130-9831,QQ:3398234753。
 
为什么选择我们:北京凯铧互联科技有限公司(简称凯铧互联)由多名前阿里云资深技术专家创立,核心员工来自阿里巴巴、腾讯等,作为阿里云,腾讯云百度云,金山云,华为云重要的合作伙伴,专注于为企业用户提供云计算及云计算的解决方案。总部设在,并在内蒙设有办事处。做为一家综合性方案商,凯铧互联向各行业用户提供基于云计算的各种解决方案。为用户获得优质服务的同时,秉承"专业规划、周到服务"的服务理念,根据用户的实际情况,充分考虑各种网络资源的特点及功效,为用户量身定北京做一套适合于其实际应用需求的网络应用方案。帮助用户利用互联网的力量展开新的营销方式,并大大缩短了项目实施周期,获得用户的一致好评。


[2017-06-27 09:32:36]

在线咨询
售后咨询
扫一扫

扫一扫
凯铧科技

服务QQ
3287819116

返回顶部