はじめに
Software Collection(SCL)を利用してCentOS7にPHP-FPM7.1をインストール
親記事:PHP, PHP-FPMの各種インストール方法とEOLまとめ
参考:[Quick Start — Software Collections] (https://www.softwarecollections.org/en/docs/)
サポート
本手法で導入した場合、Red Hat Software Collections Product Life Cycle - Red Hat Customer Portalより、2019-10がEOLだと思われる。
それ以降に報告された脆弱性や不具合への対応は実施されない可能性がある。
LOG
インストール
# cat /etc/redhat-release
CentOS Linux release 7.7.1908 (Core)
# yum install -y centos-release-scl;yum install -y rh-php71-php-fpm which;scl enable rh-php71 bash
... 略
php-fpm起動/停止
# systemctl start rh-php71-php-fpm
# systemctl status rh-php71-php-fpm
● rh-php71-php-fpm.service - The PHP FastCGI Process Manager
Loaded: loaded (/usr/lib/systemd/system/rh-php71-php-fpm.service; disabled; vendor preset: disabled)
Active: active (running) since Sat 2019-09-28 12:46:04 UTC; 6s ago
Main PID: 201 (php-fpm)
Status: "Ready to handle connections"
CGroup: /docker/6a04b1f8851f56295486a62b84086384a7f59d6624dcca8b53f35b78fba0e806/system.slice/rh-php71-php-fpm.service
tq201 php-fpm: master process (/etc/opt/rh/rh-php71/php-fpm.conf)
tq202 php-fpm: pool www
tq203 php-fpm: pool www
tq204 php-fpm: pool www
tq205 php-fpm: pool www
mq206 php-fpm: pool www
? 201 php-fpm: master process (/etc/opt/rh/rh-php71/php-fpm.conf)
Sep 28 12:46:03 6a04b1f8851f systemd[1]: Starting The PHP FastCGI Process Manager...
Sep 28 12:46:04 6a04b1f8851f systemd[1]: Started The PHP FastCGI Process Manager.
# systemctl stop rh-php71-php-fpm
# systemctl status rh-php71-php-fpm
● rh-php71-php-fpm.service - The PHP FastCGI Process Manager
Loaded: loaded (/usr/lib/systemd/system/rh-php71-php-fpm.service; disabled; vendor preset: disabled)
Active: inactive (dead)
Sep 28 12:46:03 6a04b1f8851f systemd[1]: Starting The PHP FastCGI Process Manager...
Sep 28 12:46:04 6a04b1f8851f systemd[1]: Started The PHP FastCGI Process Manager.
Sep 28 12:46:25 6a04b1f8851f systemd[1]: Stopping The PHP FastCGI Process Manager...
Sep 28 12:46:25 6a04b1f8851f systemd[1]: Stopped The PHP FastCGI Process Manager.
php-fpm自動起動設定/設定解除
# systemctl enable rh-php71-php-fpm
Created symlink from /etc/systemd/system/multi-user.target.wants/rh-php71-php-fpm.service to /usr/lib/systemd/system/rh-php71-php-fpm.service.
# systemctl list-unit-files --type=service | grep php-fpm
rh-php71-php-fpm.service enabled
# systemctl disable rh-php71-php-fpm
Removed symlink /etc/systemd/system/multi-user.target.wants/rh-php71-php-fpm.service.
# systemctl list-unit-files --type=service |grep php-fpm
rh-php71-php-fpm.service disabled
各種確認
# which php
/usr/bin/which: no php in (/opt/rh/rh-php71/root/usr/bin:/opt/rh/rh-php71/root/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin)
# which php-fpm
/opt/rh/rh-php71/root/usr/sbin/php-fpm
# php-fpm -v
PHP 7.1.30 (fpm-fcgi) (built: Aug 21 2019 09:28:59)
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2018 Zend Technologies
# yum info rh-php71-php-fpm
Loaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
* base: ftp.iij.ad.jp
* centos-sclo-rh: ftp.iij.ad.jp
* centos-sclo-sclo: ftp.iij.ad.jp
* extras: ftp.iij.ad.jp
* updates: ftp.iij.ad.jp
Installed Packages
Name : rh-php71-php-fpm
Arch : x86_64
Version : 7.1.30
Release : 1.el7
Size : 4.3 M
Repo : installed
From repo : centos-sclo-rh
Summary : PHP FastCGI Process Manager
URL : http://www.php.net/
License : PHP and Zend and BSD and MIT and ASL 1.0
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.