Linux

httpd 2.4.6 이상 업그레이드 하기 centos7

Naan 2021. 1. 15. 17:19
320x100

# yum info httpd

Loaded plugins: fastestmirror, langpacks

Loading mirror speeds from cached hostfile

 * base: mirror.kakao.com

 * epel: mirror.poliwangi.ac.id

 * extras: mirror.kakao.com

 * updates: mirror.kakao.com

Installed Packages

Name        : httpd

Arch        : x86_64

Version     : 2.4.6

Release     : 97.el7.centos

Size        : 9.4 M

Repo        : installed

From repo   : updates

Summary     : Apache HTTP Server

URL         : http://httpd.apache.org/

License     : ASL 2.0

Description : The Apache HTTP Server is a powerful, efficient, and extensible

            : web server.


centos 7에서는 2.4.6 버전이 최대 버전이다.

상위 버전 업그레이드 하려면

# yum install -y epel-release

# cd /etc/yum.repos.d && wget https://repo.codeit.guru/codeit.el`rpm -q --qf "%{VERSION}" $(rpm -q --whatprovides redhat-release)`.repo

# yum info httpd
Loaded plugins: fastestmirror, langpacks
Loading mirror speeds from cached hostfile
 * base: mirror.kakao.com
 * epel: mirror.poliwangi.ac.id
 * extras: mirror.kakao.com
 * updates: mirror.kakao.com
CodeIT                                                                                                                                                                                                                                                                  | 2.9 kB  00:00:00
CodeIT/x86_64/primary_db                                                                                                                                                                                                                                                |  59 kB  00:00:03
Installed Packages
Name        : httpd
Arch        : x86_64
Version     : 2.4.6
Release     : 97.el7.centos
Size        : 9.4 M
Repo        : installed
From repo   : updates
Summary     : Apache HTTP Server
URL         : http://httpd.apache.org/
License     : ASL 2.0
Description : The Apache HTTP Server is a powerful, efficient, and extensible
            : web server.

Available Packages
Name        : httpd
Arch        : x86_64
Version     : 2.4.46
Release     : 1.codeit.el7
Size        : 1.4 M
Repo        : CodeIT/x86_64
Summary     : Apache HTTP Server
URL         : https://httpd.apache.org/
License     : ASL 2.0
Description : The Apache HTTP Server is a powerful, efficient, and extensible
            : web server.

# yum install httpd 

# httpd -V
Server version: Apache/2.4.46 (codeit)
Server built:   Aug  7 2020 15:21:08
Server's Module Magic Number: 20120211:93
Server loaded:  APR 1.7.0, APR-UTIL 1.6.1
Compiled using: APR 1.7.0, APR-UTIL 1.6.1
Architecture:   64-bit
Server MPM:     event
  threaded:     yes (fixed thread count)
    forked:     yes (variable process count)
Server compiled with....

버전 업이 되었다.!



320x100