Home  >  Article  >  Backend Development  >  How to install php-fpm with yum

How to install php-fpm with yum

藏色散人
藏色散人Original
2020-07-27 09:21:532332browse

How to install php-fpm with yum: first configure the yum source; then install PHP; finally execute the command "yum install --enablerepo=remi --enablerepo=remi-php56 php-fpm" to install "php- fpm" will do.

How to install php-fpm with yum

Recommended: "PHP Tutorial"

CentOS yum installation of PHP5.6 and php-fpm

Briefly introduce how to install and upgrade PHP5.6 on CentOS.

Configure yum source

Add the epel and remi sources of CentOS 6.5.

The following is the source for CentOS 7.0.

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

Install PHP5.6

After the yum source is configured, the next step is to install PHP5.6.

yum install -y --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 php-fpm

Note: bcmath sometimes cannot be used without mcrypt installed,,

Use the PHP command to check the version.

php --version
PHP 5.6.0 (cli) (built: Sep  3 2014 19:51:31) Copyright (c) 1997-2014 The PHP Group Zend Engine v2.6.0, Copyright (c) 1998-2014 Zend Technologies     with Zend OPcache v7.0.4-dev, Copyright (c) 1999-2014, by Zend Technologies     with Xdebug v2.2.5, Copyright (c) 2002-2014, by Derick Rethans

The version installed here is PHP5.6.0. 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:

systemctl start php-fpm.service

The above is the detailed content of How to install php-fpm with yum. 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