How to install php-fpm with yum

藏色散人
Release: 2023-03-03 10:42:02
Original
2405 people have browsed it

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
Copy after login
yum install epel-release
rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
Copy after login

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
Copy after login

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
Copy after login

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
Copy after login

Start the PHP-FPM service:

systemctl start php-fpm.service
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template