0
0

More than 3 years have passed since last update.

CentOS 7にPHP-FPM 7.0をインストール(Remi's RPM repository)

Last updated at Posted at 2019-09-28

はじめに

Remi's RPM repositoryを利用してCentOS7にPHP-FPM7.0をインストール
親記事:PHP, PHP-FPMの各種インストール方法とEOLまとめ
参考:Remi's RPM repository

サポート

本手法で導入した場合、PHP: Supported Versions/PHP: Unsupported Branchesより、2019-01-10がEOLになると思われる。
それ以降に報告された脆弱性や不具合への対応は実施されない可能性がある。
(メンテナーの御慈悲でその後もアップデートされているが、いつまで続くかはわからない)

note

  • インストール後の更新は yum --enablerepo=remi-php70 update

LOG

インストール

# cat /etc/redhat-release
CentOS Linux release 7.7.1908 (Core)

# yum install -y https://rpms.remirepo.net/enterprise/remi-release-7.rpm
... 略

# yum install -y --enablerepo=remi-php70 php-fpm which
... 略

php-fpm起動/停止

# systemctl start php-fpm
# systemctl status php-fpm
● php-fpm.service - The PHP FastCGI Process Manager
   Loaded: loaded (/usr/lib/systemd/system/php-fpm.service; disabled; vendor preset: disabled)
   Active: active (running) since Sat 2019-09-28 02:09:27 UTC; 4s ago
 Main PID: 234 (php-fpm)
   Status: "Ready to handle connections"
   CGroup: /docker/4a5f0f61883e6e6b401de8b1f5d34e236e546bc5ab0f284a996777989a606c49/system.slice/php-fpm.service
           tq234 php-fpm: master process (/etc/php-fpm.conf)
           tq235 php-fpm: pool www
           tq236 php-fpm: pool www
           tq237 php-fpm: pool www
           tq238 php-fpm: pool www
           mq239 php-fpm: pool www
           ? 234 php-fpm: master process (/etc/php-fpm.conf)

Sep 28 02:09:27 4a5f0f61883e systemd[1]: Starting The PHP FastCGI Process Manager...
Sep 28 02:09:27 4a5f0f61883e systemd[1]: Started The PHP FastCGI Process Manager.
# systemctl stop php-fpm
# systemctl status php-fpm
● php-fpm.service - The PHP FastCGI Process Manager
   Loaded: loaded (/usr/lib/systemd/system/php-fpm.service; disabled; vendor preset: disabled)
   Active: inactive (dead)

Sep 28 02:09:27 4a5f0f61883e systemd[1]: Starting The PHP FastCGI Process Manager...
Sep 28 02:09:27 4a5f0f61883e systemd[1]: Started The PHP FastCGI Process Manager.
Sep 28 02:09:46 4a5f0f61883e systemd[1]: Stopping The PHP FastCGI Process Manager...
Sep 28 02:09:46 4a5f0f61883e systemd[1]: Stopped The PHP FastCGI Process Manager.

php-fpm自動起動設定/設定解除

# systemctl enable php-fpm
Created symlink from /etc/systemd/system/multi-user.target.wants/php-fpm.service to /usr/lib/systemd/system/php-fpm.service.

# systemctl list-unit-files --type=service |grep php-fpm
php-fpm.service                        enabled
# systemctl disable php-fpm
Removed symlink /etc/systemd/system/multi-user.target.wants/php-fpm.service.

# systemctl list-unit-files --type=service |grep php-fpm
php-fpm.service                        disabled

各種確認

# which php
which: no php in (/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin)

# which php-fpm
/usr/sbin/php-fpm

# php-fpm -v
PHP 7.0.33 (fpm-fcgi) (built: Aug 28 2019 14:13:14)
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies

# yum info php-fpm
Loaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
 * base: ftp.iij.ad.jp
 * epel: ftp.riken.jp
 * extras: ftp.iij.ad.jp
 * remi-safe: ftp.riken.jp
 * updates: ftp.iij.ad.jp
Installed Packages
Name        : php-fpm
Arch        : x86_64
Version     : 7.0.33
Release     : 13.el7.remi
Size        : 4.1 M
Repo        : installed
From repo   : remi-php70
Summary     : PHP FastCGI Process Manager
URL         : http://www.php.net/
License     : PHP and Zend and BSD and MIT and ASL 1.0 and NCSA
Description : PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI
            : implementation with some additional features useful for sites of
            : any size, especially busier sites.

パッケージ更新状況

# rpm -q -changelog php-fpm | head -n 20
* Wed Aug 28 2019 Remi Collet <remi@remirepo.net> - 7.0.33-13
- mbstring:
  Fix CVE-2019-13224 don't allow different encodings for onig_new_deluxe
- pcre:
  Fix #75457 heap use-after-free in pcrelib

* Tue Jul 30 2019 Remi Collet <remi@remirepo.net> - 7.0.33-12
- exif:
  Fix #78256 heap-buffer-overflow on exif_process_user_comment
  CVE-2019-11042
  Fix #78222 heap-buffer-overflow on exif_scan_thumbnail
  CVE-2019-11041
- phar:
  Fix #77919 Potential UAF in Phar RSHUTDOWN

* Tue Jul 02 2019 Remi Collet <remi@remirepo.net> - 7.0.33-11
- use oracle client library version 19.3
- disable opcache.huge_code_pages in default configuration

* Tue May 28 2019 Remi Collet <remi@remirepo.net> - 7.0.33-9
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0