본문 바로가기

IT/리눅스

CenOS7에 PHP5.6 설치

현재 PHP8까지 배포되고 있으나, 오랬동안 CentOS7 + PHP 5.6 + mysql 5.7 조합으로 매우 안정적으로 오랬동안 사용해왔다. 지금도 위 조합의 서버를 많은 개인이나 기업들이 활용하고 있을 것이다.

CentOS 설치

# rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

 

remi repo 설치/ 설정
# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
/etc/yum.repos.d/ 아래 remi.repo, remi-php70.repo 이 생성

 

# vi /etc/yum.repos.d/remi.repo 수정

[remi-php56]
name=Remi's PHP 5.6 RPM repository for Enterprise Linux 7 - $basearch
#baseurl=http://rpms.remirepo.net/enterprise/7/php56/$basearch/
mirrorlist=http://rpms.remirepo.net/enterprise/7/php56/mirror
# NOTICE: common dependencies are in "remi-safe"
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi

 

 

php 모듈설치

# yum install php php-common php-cli php-fpm php-mysqlnd php-gd php-mbstring php-mcrypt php-opcache php-pear php-xml php-xmlrpc php-embedded php-bcmath php-imap php-pdo php-pecl-imagick php-soap php-devel php-ldap php-intl php-pecl-apcu php-snmp php-tidy php-dba php-zip

 

 

============================

[웹 다운로드]

CentOS 다운로드 할 수 있는 Archive

https://www.centos.org/download/

 

PHP 다운로드 할 수 있는 Archive

https://www.php.net/releases/

'IT > 리눅스' 카테고리의 다른 글

Mysql 데이터 위치 변경 - CentOS  (0) 2022.08.29
MySql 5.7 설치  (375) 2022.08.29
mysql-connector-java 설치 [CentOS 7]  (0) 2022.08.29
CentOS7 재부팅시 mysql 복구  (0) 2022.08.29
CentOS java mysql-connector 설치  (0) 2022.08.29