1
3

More than 3 years have passed since last update.

CentOS 7にPHP-FPM 7.3をインストール(SCL)

Last updated at Posted at 2020-01-25

はじめに

Software Collection(SCL)を利用してCentOS7にPHP-FPM7.3をインストール
親記事:PHP, PHP-FPMの各種インストール方法とEOLまとめ
参考:Quick Start — Software Collections   

サポート

本手法で導入した場合、Red Hat Software Collections Product Life Cycle - Red Hat Customer Portalより、2021-12 2024-06 がEOLだと思われる。
それ以降に報告された脆弱性や不具合への対応は実施されない可能性がある。

LOG

インストール

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

# yum install -y centos-release-scl
# yum install -y rh-php73-php-fpm which
# scl enable rh-php73 bash
... 略

php-fpm起動/停止

# systemctl start rh-php73-php-fpm
# systemctl status rh-php73-php-fpm
● rh-php73-php-fpm.service - The PHP FastCGI Process Manager
   Loaded: loaded (/usr/lib/systemd/system/rh-php73-php-fpm.service; disabled; vendor preset: disabled)
   Active: active (running) since Sat 2020-01-25 04:32:23 UTC; 4s ago
 Main PID: 308 (php-fpm)
   Status: "Ready to handle connections"
   CGroup: /docker/abf0351f47166cf1d507fd44c1e3cba0df1b82c921159f1471585e9473855b32/docker/abf0351f47166cf1d507fd44c1e3cba0df1b82c921159f1471585e9473855b32/system.slice/rh-php73-php-fpm.service
           tq308 php-fpm: master process (/etc/opt/rh/rh-php73/php-fpm.conf)
           tq309 php-fpm: pool www
           tq310 php-fpm: pool www
           tq311 php-fpm: pool www
           tq312 php-fpm: pool www
           mq313 php-fpm: pool www
           ? 308 php-fpm: master process (/etc/opt/rh/rh-php73/php-fpm.conf)

Jan 25 04:32:23 abf0351f4716 systemd[1]: Starting The PHP FastCGI Process Manager...
Jan 25 04:32:23 abf0351f4716 systemd[1]: Started The PHP FastCGI Process Manager.
# systemctl stop rh-php73-php-fpm
# systemctl status rh-php73-php-fpm
● rh-php73-php-fpm.service - The PHP FastCGI Process Manager
   Loaded: loaded (/usr/lib/systemd/system/rh-php73-php-fpm.service; disabled; vendor preset: disabled)
   Active: inactive (dead)

Jan 25 04:32:23 abf0351f4716 systemd[1]: Starting The PHP FastCGI Process Manager...
Jan 25 04:32:23 abf0351f4716 systemd[1]: Started The PHP FastCGI Process Manager.
Jan 25 04:32:50 abf0351f4716 systemd[1]: Stopping The PHP FastCGI Process Manager...
Jan 25 04:32:50 abf0351f4716 systemd[1]: Stopped The PHP FastCGI Process Manager.

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

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

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

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

各種確認

# which php
/usr/bin/which: no php in (/opt/rh/rh-php73/root/usr/bin:/opt/rh/rh-php73/root/usr/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin)

# which php-fpm
/opt/rh/rh-php73/root/usr/sbin/php-fpm

# php-fpm -v
PHP 7.3.11 (fpm-fcgi) (built: Dec 10 2019 16:16:24)
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.3.11, Copyright (c) 1998-2018 Zend Technologies

# yum info rh-php72-php-fpm
Loaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
 * base: ftp-srv2.kddilabs.jp
 * centos-sclo-rh: ftp-srv2.kddilabs.jp
 * centos-sclo-sclo: ftp-srv2.kddilabs.jp
 * extras: ftp-srv2.kddilabs.jp
 * updates: ftp-srv2.kddilabs.jp
Available Packages
Name        : rh-php72-php-fpm
Arch        : x86_64
Version     : 7.2.24
Release     : 1.el7
Size        : 1.5 M
Repo        : centos-sclo-rh/x86_64
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.
1
3
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
1
3