yum을 사용하여 CentOS에 Apache 2.4 설치

yum을 사용하여 CentOS에 Apache 2.4 설치

mod_proxy_wstunnelApache 2.2는 불가능하기 때문에 CentOS에는 Apache 2.4가 필요합니다 . 나는 열심히 노력했다이것, 그러나 불행히도 RHEL에서는 작동합니다. 설치 후 Apache 2.4를 실행할 수 없습니다.

CentOS에 전체 Apache 2.4를 설치하는 방법을 알려줄 수 있는 사람이 있습니까?

편집하다:

# yum list installed | grep httpd
Failed to set locale, defaulting to C
httpd.x86_64                         2.2.15-30.el6.centos       @updates        
httpd-tools.x86_64                   2.2.15-30.el6.centos       @updates        
httpd24.x86_64                       1-6.el6                    @epel-httpd24   
httpd24-apr.x86_64                   1.4.8-2.el6                @epel-httpd24   
httpd24-apr-util.x86_64              1.5.2-5.el6                @epel-httpd24   
httpd24-httpd.x86_64                 2.4.6-5.el6                @epel-httpd24   
httpd24-httpd-tools.x86_64           2.4.6-5.el6                @epel-httpd24   
httpd24-mod_ssl.x86_64               1:2.4.6-5.el6              @epel-httpd24   
httpd24-runtime.x86_64               1-6.el6                    @epel-httpd24   

답변1

CentOS의 Apache 2.4:

1 단계:

cd /etc/yum.repos.d/
wget http://repos.fedorapeople.org/repos/jkaluza/httpd24/epel-httpd24.repo

2 단계:

yum install httpd24.x86_64

3단계:

$ /opt/rh/httpd24/root/usr/sbin/httpd -version
Server version: Apache/2.4.6 (Red Hat)
Server built:   Sep 25 2013 05:25:46

참고: 구성 파일은 다음 위치에 있습니다./opt/rh/httpd24/root/etc/httpd

$ ls
conf  conf.d  conf.modules.d  logs  modules  run

편집하다:Apache 2.2를 종료하려는 경우

$ chkconfig httpd off
$ chkconfig --list | grep httpd
httpd           0:off   1:off   2:off   3:off   4:off   5:off   6:off
httpd24-httpd   0:off   1:off   2:off   3:off   4:off   5:off   6:off

편집 2: http://wiki.apache.org/httpd/PHP-FPM

yum install php-fpm
/etc/init.d/php-fpm start

관련 정보