install-php5-6-X
title: Centos 7.X use yum to install-php5.6.X
date: 2021-11-12 20:55:07
tags: linux
- Check now php package
yum list installed | grep php
- if there have any php, deleate it first.
yum remove php.x86_64 php-cli.x86_64 php-common.x86_64 php-gd.x86_64 php-ldap.x86_64 php-mbstring.x86_64 php-mcrypt.x86_64 php-mysql.x86_64 php-pdo.x86_64
- Configure EPEL source
yum install -y epel-release
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
- Configure remi source
rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
- Install php5.6.x
yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof
- install php-fpm
yum install --enablerepo=remi --enablerepo=remi-php56 php-fpm
- Configure boot service
systemctl restart php-fpm
systemctl enable php-frm
- Check if the installation is successful
ps -ef | grep php
netstat -anp | grep 9000
- restar service
sudo systemctl restart httpd
sudo systemctl restart php-fpm
service httpd restart
This article is an original work and is licensed under the CC BY-NC-ND 4.0 license. For full reproduction, please credit the source as Lyconeko.