개발일기

CentOS에 PHP8 설치 (Epel, Remi) 본문

프로그래밍 언어/PHP - Laravel

CentOS에 PHP8 설치 (Epel, Remi)

Flashback 2021. 11. 30. 10:53
728x90
반응형

Epel과 Remi란?

EPEL : Extra Packages For Enterprise Linux의 약자이다. yum 기본 저장소에 없는 다양한 패키지들이 저장되어 있다.

REMI : RedHat계열의 패키지 저장소를 뜻한다. Remi 저장소에는 기본 저장소에는 추가되어 있지 않은 최신버전의 패키지들이 저장되어 있다.

 

최신버전의 PHP를 설치하기 위해서는 EPEL과 Remi를 사용하여 설치를 진행한다. 기본 저장소인 yum을 통해 설치할 경우, 저장소가 업데이트 되지 않아 오래된 버전의 패키지가 설치될 수 있기 때문에 가급적 epel과  remi와 같은 다른 저장소를 추가하여 설치를 진행하는 것을 추천한다.


1. Epel 저장소 추가

yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

CentOS 7을 사용 중인 경우에는 epel-release-latest-7을 사용한다. OS가 7이기에 epel도 7버전으로 설치를 진행하면 된다.

 

yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm

CentOS 8 버전인 경우 위와 같이 epel-release-latest-8로 입력하여 설치를 진행하면 된다.

 

 

2. Remi 저장소 추가

yum -y install https://rpms.remirepo.net/enterprise/remi-release-7.rpm
# CentOS 7 버전인 경우

yum -y install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
# CentOS 8 버전인 경우

Epel과 마찬가지로 CentOS 버전에 따라 다르게 설치해주면 된다.

 

 

3. yum 유틸리티 설치

yum install -y yum-utils

설치시 필요한 yum관련 유틸리티들의 모여져 있는 yum-utils 설치

 

 

4. Remi php 활성화

yum-config-manager --enable remi-php80

Remi 저장소에서 php 8 버전 저장소를 활성화 시키기 위하여 추가 설정을 진행한다

 

 

5. php 추가 패키지 설치

yum -y install php php-{cli,fpm,mysqlnd,zip,devel,gd,mbstring,curl,xml,pear,bcmath,json}

php를 설치하는 것 외에도 부가적으로 필요한 패키지들을 추가로 설치한다. sql과 연결을 하거나 웹 서버와 연결을 가능하게 해주는 등의 패키지들이 포함되어 있다.

 

 

6. php버전 확인 및 설치 확인

php -v

 

https://docs.fedoraproject.org/en-US/epel/

 

Extra Packages for Enterprise Linux (EPEL) :: Fedora Docs

The EPEL project strives to provide packages with both high quality and stability. However, EPEL is maintained by a community of people who generally volunteer their time and no commercial support is provided. It is the nature of such a project that packag

docs.fedoraproject.org

https://rpms.remirepo.net/

 

Remi's RPM repository

Download mirrors - Full content AM: http://remi.mirrors.arminco.com/ - full mirror (Armenia, IPv4, IPv6) AT: http://mirror.digitalnova.at/remi/ - full mirror (Austria, IPv4) AU: http://remi.conetix.com.au/ - full mirror (Australia, IPv4) AU: https://remi.m

rpms.remirepo.net

 

728x90
반응형
Comments