はじめに
Software Collection(SCL)を利用してCentOS7にPHP-FPM7.2をインストール
親記事: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より、2020-11がEOLだと思われる。
それ以降に報告された脆弱性や不具合への対応は実施されない可能性がある。
LOG
インストール
# cat /etc/redhat-release
CentOS Linux release 7.7.1908 (Core)
# yum install -y centos-release-scl;yum install -y rh-php72-php-fpm which;scl enable rh-php72 bash
... 略
php-fpm起動/停止
# systemctl start rh-php72-php-fpm
# systemctl status rh-php72-php-fpm
● rh-php72-php-fpm.service - The PHP FastCGI Process Manager
Loaded: loaded (/usr/lib/systemd/system/rh-php72-php-fpm.service; disabled; vendor preset: disabled)
Active: active (running) since Sat 2019-09-28 13:22:16 UTC; 4s ago
Main PID: 204 (php-fpm)
Status: "Ready to handle connections"
CGroup: /docker/2da808d72f1601126930246596528e941821998e6b208d26445e2a825646da11/system.slice/rh-php72-php-fpm.service
tq204 php-fpm: master process (/etc/opt/rh/rh-php72/php-fpm.conf)
tq205 php-fpm: pool www
tq206 php-fpm: pool www
tq207 php-fpm: pool www
tq208 php-fpm: pool www
mq209 php-fpm: pool www
? 204 php-fpm: master process (/etc/opt/rh/rh-php72/php-fpm.conf)
Sep 28 13:22:16 2da808d72f16 systemd[1]: Starting The PHP FastCGI Process Manager...
Sep 28 13:22:16 2da808d72f16 systemd[1]: Started The PHP FastCGI Process Manager.
# systemctl stop rh-php72-php-fpm
# systemctl status rh-php72-php-fpm
● rh-php72-php-fpm.service - The PHP FastCGI Process Manager
Loaded: loaded (/usr/lib/systemd/system/rh-php72-php-fpm.service; disabled; vendor preset: disabled)
Active: inactive (dead)
Sep 28 13:22:16 2da808d72f16 systemd[1]: Starting The PHP FastCGI Process Manager...
Sep 28 13:22:16 2da808d72f16 systemd[1]: Started The PHP FastCGI Process Manager.
Sep 28 13:22:37 2da808d72f16 systemd[1]: Stopping The PHP FastCGI Process Manager...
Sep 28 13:22:37 2da808d72f16 systemd[1]: Stopped The PHP FastCGI Process Manager.
php-fpm自動起動設定/設定解除
# systemctl enable rh-php72-php-fpm
Created symlink from /etc/systemd/system/multi-user.target.wants/rh-php72-php-fpm.service to /usr/lib/systemd/system/rh-php72-php-fpm.service.
# systemctl list-unit-files --type=service | grep php-fpm
rh-php72-php-fpm.service enabled
# systemctl disable rh-php72-php-fpm
Removed symlink /etc/systemd/system/multi-user.target.wants/rh-php72-php-fpm.service.
# systemctl list-unit-files --type=service |grep php-fpm
rh-php72-php-fpm.service disabled
各種確認
# which php
/usr/bin/which: no php in (/opt/rh/rh-php72/root/usr/bin:/opt/rh/rh-php72/root/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin)
# which php-fpm
/opt/rh/rh-php72/root/usr/sbin/php-fpm
# php-fpm -v
PHP 7.2.10 (fpm-fcgi) (built: Nov 16 2018 15:26:42)
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
# yum info rh-php72-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-php72-php-fpm
Arch : x86_64
Version : 7.2.10
Release : 3.el7
Size : 4.6 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 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.