设为首页 收藏本站
查看: 668|回复: 0

[经验分享] Centos6.6编译安装apache2.4.9

[复制链接]
累计签到:2 天
连续签到:1 天
发表于 2016-4-13 09:19:24 | 显示全部楼层 |阅读模式
Centos6.7编译安装httpd 2.4.9 + mysql-5.5.33 + php-5.4.26 (LAMP)一、编译安装apache2.4.9httpd-2.4
              新特性:
                     (1) MPM支持运行DSO机制;以模块形式按需加载;
                     (2) 支持eventMPM;
                     (3) 支持异步读写;
                     (4) 支持每模块及每个目录分别使用各自的日志级别;
                     (5) 每请求配置;<If>
                     (6) 增强版的表达式分析器;
                     (7) 支持毫秒级的keepalivetimeout;
                     (8) 基于FQDN的虚拟主机不再需要NameVirtualHost指令;
                     (9) 支持用户自定义变量;

              新模块:
                     (1) mod_proxy_fcgi
                     (2) mod_ratelimit
                     (3) mod_remoteip

              修改了一些配置机制:
                     不再支持使用Order,Deny, Allow来做基于IP的访问控制;


1、解决依赖关系
httpd-2.4.9需要较新版本的apr和apr-util,因此需要事先对其进行升级。升级方式有两种,一种是通过源代码编译安装,一种是直接升级rpm包。这里选择使用编译源代码的方式进行。


(1) 编译安装apr
1
2
3
4
5
wget http://apache.fayea.com//apr/apr-1.5.2.tar.gz
[iyunv@web tools]# tar apr-1.5.2.tar.gz
[iyunv@web tools]# cd apr-1.5.2
[iyunv@web apr-1.5.2]# ./configure--prefix=/usr/local/apr
[root@webapr-1.5.2]# make && make install



(2) 编译安装apr-util
1
2
3
4
5
wget http://apache.fayea.com//apr/apr-util-1.5.4.tar.gz
[iyunv@web tools]# tar xfapr-util-1.5.4.tar.gz
[iyunv@web tools]# cd apr-util-1.5.4
[iyunv@web apr-util-1.5.4]#./configure--prefix=/usr/local/apr-util --with-apr=/usr/local/apr
#make && make install



(3) 安装pcre-devel软件包。
1
[iyunv@web ~]#yum install -y pcre-devel




2、编译安装httpd-2.4.9
首先下载httpd-2.4.9到本地,下载地址wget http://apache.fayea.com/httpd/httpd-2.4.18.tar.gz。而后执行如下命令进行编译安装过程:
1
2
3
4
5
[iyunv@web tools]# wget http://apache.fayea.com/httpd/httpd-2.4.18.tar.gz
[iyunv@web tools]# tar xf httpd-2.4.18.tar.gz
[iyunv@web tools]# cd httpd-2.4.18
# ./configure --prefix=/usr/local/apache--sysconfdir=/etc/httpd24 --enable-so --enable-ssl --enable-cgi--enable-rewrite --with-zlib --with-pcre --with-apr=/usr/local/apr--with-apr-util=/usr/local/apr-util --enable-modules=most--enable-mpms-shared=all --with-mpm=event
#make && make install



补充:

(1)构建MPM为静态模块
在全部平台中,MPM都可以构建为静态模块。在构建时选择一种MPM,链接到服务器中。如果要改变MPM,必须重新构建。为了使用指定的MPM,请在执行configure脚本 时,使用参数 --with-mpm=NAME。NAME是指定的MPM名称。编译完成后,可以使用 ./httpd -l 来确定选择的MPM。 此命令会列出编译到服务器程序中的所有模块,包括 MPM。

(2)构建 MPM 为动态模块

在Unix或类似平台中,MPM可以构建为动态模块,与其它动态模块一样在运行时加载。构建 MPM 为动态模块允许通过修改LoadModule指令内容来改变MPM,而不用重新构建服务器程序。在执行configure脚本时,使用--enable-mpms-shared选项即可启用此特性。当给出的参数为all时,所有此平台支持的MPM模块都会被安装。还可以在参数中给出模块列表。默认MPM,可以自动选择或者在执行configure脚本时通过--with-mpm选项来指定,然后出现在生成的服务器配置文件中。编辑LoadModule指令内容可以选择不同的MPM。
3、修改httpd的主配置文件,设置其Pid文件的路径编辑/etc/httpd/httpd.conf,添加如下行即可:
PidFile  "/var/run/httpd.pid"
1
2
3
[iyunv@web ~]# vim /etc/httpd24/httpd.conf
31 ServerRoot "/usr/local/apache"
32 PidFile  "/var/run/httpd.pid"



4、提供SysV服务脚本/etc/rc.d/init.d/httpd   内容如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[iyunv@web ~]# vim /etc/rc.d/init.d/httpd
#!/bin/bash
#
#httpd        Startup script for theApache HTTP Server
#
#chkconfig: - 85 15
#description: Apache is a World Wide Web server. It is used to serve \
#        HTML files and CGI.
#processname: httpd
#config: /etc/httpd/conf/httpd.conf
#config: /etc/sysconfig/httpd
#pidfile: /var/run/httpd.pid
  
# Sourcefunction library.
. /etc/rc.d/init.d/functions
  
if [ -f /etc/sysconfig/httpd]; then
        . /etc/sysconfig/httpd
fi
  
# Start httpd in the C localeby default.
HTTPD_LANG=${HTTPD_LANG-"C"}
  
# This will prevent initlogfrom swallowing up a pass-phrase prompt if
# mod_ssl needs a pass-phrasefrom the user.
INITLOG_ARGS=""
  
# Set HTTPD=/usr/sbin/httpd.workerin /etc/sysconfig/httpd to use a server
# with the thread-based"worker" MPM; BE WARNED that some modules may not
# work correctly with athread-based MPM; notably PHP will refuse to start.
  
# Path to the apachectlscript, server binary, and short-form for messages.
apachectl=/usr/local/apache/bin/apachectl
httpd=${HTTPD-/usr/local/apache/bin/httpd}
prog=httpd
pidfile=${PIDFILE-/var/run/httpd.pid}
lockfile=${LOCKFILE-/var/lock/subsys/httpd}
RETVAL=0
  
start() {
        echo -n $"Starting $prog: "
        LANG=$HTTPD_LANG daemon--pidfile=${pidfile} $httpd $OPTIONS
        RETVAL=$?
        echo
        [ $RETVAL = 0 ] && touch${lockfile}
        return $RETVAL
}
  
stop() {
  echo -n $"Stopping $prog: "
  killproc -p ${pidfile} -d 10 $httpd
  RETVAL=$?
  echo
  [ $RETVAL = 0 ] && rm -f ${lockfile}${pidfile}
}
reload() {
    echo -n $"Reloading $prog: "
    if ! LANG=$HTTPD_LANG $httpd $OPTIONS -t>&/dev/null; then
        RETVAL=$?
        echo $"not reloading due toconfiguration syntax error"
        failure $"not reloading $httpd dueto configuration syntax error"
    else
        killproc -p ${pidfile} $httpd -HUP
        RETVAL=$?
    fi
    echo
}
  
# See how we were called.
case "$1" in
  start)
  start
  ;;
  stop)
  stop
  ;;
  status)
        status -p ${pidfile} $httpd
  RETVAL=$?
  ;;
  restart)
  stop
  start
  ;;
  condrestart)
  if [ -f ${pidfile} ] ; then
    stop
    start
  fi
  ;;
  reload)
        reload
  ;;
  graceful|help|configtest|fullstatus)
  $apachectl $@
  RETVAL=$?
  ;;
  *)
  echo $"Usage: $prog{start|stop|restart|condrestart|reload|status|fullstatus|graceful|help|configtest}"
  exit 1
esac
  
exit $RETVAL



5、为此脚本赋予执行权限:
1
2
3
[iyunv@webhttpd24]#chmod +x /etc/rc.d/init.d/httpd
[iyunv@web httpd24]# ls -l/etc/rc.d/init.d/httpd
-rwxr-xr-x1 root root 2348 Mar 18 11:03 /etc/rc.d/init.d/httpd



6、加入服务列表并设置开机启动:
1
2
3
4
[iyunv@web ~]# chkconfig --add httpd
[iyunv@web ~]# chkconfig
httpd            0:off 1:off 2:off 3:off 4:off 5:off 6:off
[iyunv@web~]# chkconfig httpd on



7、启动httpd服务进行测试:
wKiom1cM6GLzkKfgAAIk1W3x48o537.jpg
8、防火墙设置:

CentOS防火墙在装好APACHE不能用,解决方法如下:

(1) 插入新的防火墙规则,开通80端口

/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT

(2) 保存规则:

/etc/rc.d/init.d/iptables save

(3) 重启防火墙服务

/etc/init.d/iptables restart

9、Selinux的设置:

启动Apache时,可能会提示错误:httpd:Syntax error on line 57 of /etc/httpd/httpd.conf: Cannot load/usr/local/apache2/modules/libphp5.so intoserver:/usr/local/apache2/modules/libphp5.so: cannot restore segment prot afterreloc: Permission denied

解决办法:
(1)关闭SELINUX(不推荐):
vi /etc/selinux/config 将SELINUX=enforcing改成SELINUX=disabled需要重启
这个方法可能会对服务器带来风险。
(2)不关闭SELINUX的方法:
# setenforce 0
# chcon -c -v -R -u system_u -r object_r -t textrel_shlib_t /usr/local/apache2/modules/libphp5.so
# service httpd restart
# setenforce 1

10、浏览器访问服务器地址: QQ截图20160413091923.jpg

apache安装配置成功!

第二篇:二、 搭建Apache虚拟主机



运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-203321-1-1.html 上篇帖子: Apache错误日志抛出child pid 3599 exit signal Bus error 下篇帖子: 搭建Apache虚拟主机
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表