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

How to install php fpm with yum

藏色散人
藏色散人Original
2020-07-07 09:08:522638browse

How to install php fpm with yum: first run the command "yum remove php php-common" to delete the installed php; then execute the command "yum install php56w-fpm php56w-opcache" to install php fpm.

How to install php fpm with yum

Centos yum installs php-fpm, no need to compile and install

1, delete

1.1 . If php has been compiled and installed before, go to the installation location and delete it directly

The general installation location is /usr/local/php

1.2. If it was installed using yum before, run

yum remove php php-common

2. Installation

Reference: https://webtatic.com/packages/php56/

The following takes the installation of version 5.6x as an example:

CentOS/RHEL 6.x:
yum install epel-release
rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm
Now you can install PHP 5.6’s mod_php SAPI (along with an opcode cache) by doing:
yum install php56w php56w-opcache
You can alternatively install PHP 5.6’s php-fpm SAPI (along with an opcode cache by doing:
yum install php56w-fpm php56w-opcache

Remarks Description:

yum install php56w php56w-opcache: Install the opcache extension, install other extensions in the same way

php -m: View the installed extensions;

whereis php: View The installation location of php-fpm;

service php-pfm start: open the php-pfm service;

pkill php-fpm: close the service;

More related knowledge, Please visit PHP Chinese website!

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