Home  >  Article  >  Backend Development  >  Install PHP5.6 instance on CentOS

Install PHP5.6 instance on CentOS

小云云
小云云Original
2018-03-19 13:54:252405browse

This article mainly shares with you CentOS installation PHP5.6 examples, hoping to help everyone.

Configure yum source
Add the epel and remi sources of CentOS 6.5

rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpmrpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

The source of CentOS 7.0

yum install epel-releaserpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm

Use the yum list command to view available Installed package (Packege)

yum list --enablerepo=remi --enablerepo=remi-php56 | grep php

Install PHP5.6

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

Use PHP command to check the version

php --version

The version installed here is PHP5. 6.34, careful users may have discovered that ZendGuardLoader has become Zend OPcahe.

Starting from PHP5.5, the PHP code cache has changed from APC to Zend OPcache.

If you configure nginx, you also need to install php-fpm

yum install --enablerepo=remi --enablerepo=remi-php56 php-fpm

Start the PHP-FPM service on the CentOS 6 system

service php-fpm start

Related recommendations:

centOs install and build php environment

The above is the detailed content of Install PHP5.6 instance on CentOS. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn