반응형
1. remi 저장소 설치
# yum install https://rpms.remirepo.net/enterprise/remi-release-7.rpm
CentOS 8 버전이라면 remi-release-8.rpm 을 설치한다.
2. epel 저장소 설치
# yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
remi 저장소를 먼저 설치할 경우 간혹 epel 종속성 때문에 에러가 날 수 있다.
따라서 remi저장소가 설치가 안 될 경우 epel 부터 설치하면 된다.
3. repository 확인
# yum repolist all | grep -i 'php'
php 에 관련된 repo 정보들이 나온다.
yum install 시 현재 enable 된 repo에 따라 설치하게 되므로 원하는 버전을 enable 시켜준다.
4. enable
# yum-config-manager --enable remi-php7x
yum-config-manager명령이 실행되지 않는다면 yum-utils를 설치하면 된다.
5. php 설치
# yum install php
enable 된 저장소에 따라 php 버전이 설치될 것 이다.
반응형
'Linux' 카테고리의 다른 글
[error] yum 에러 '[Errno 14] Peer cert cannot be verified or peer cert invalid' (0) | 2023.03.28 |
---|---|
configure 시 에러 모음 (0) | 2022.10.17 |
[ERROR] configure: error: no acceptable C compiler found in $PATH (1) | 2021.05.26 |
[HP] ssacli 명령어 (0) | 2021.05.03 |
SCP 명령어 (0) | 2021.04.14 |