0
0

More than 3 years have passed since last update.

CentOS 6にPHP-FPM 7.0をインストール(SCL)

Last updated at Posted at 2019-09-28

はじめに

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

サポート

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

LOG

インストール

# cat /etc/redhat-release
CentOS release 6.10 (Final)

# yum install -y centos-release-scl;yum install -y rh-php70-php-fpm;scl enable rh-php70 bash
... 略

php-fpm起動/停止

# service rh-php70-php-fpm start
Starting php-fpm:                                          [  OK  ]

# service rh-php70-php-fpm status
php-fpm (pid  146) is running...
# service rh-php70-php-fpm stop
Stopping php-fpm:                                          [  OK  ]

# service rh-php70-php-fpm status
php-fpm is stopped

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

# chkconfig rh-php70-php-fpm on
# chkconfig --list rh-php70-php-fpm
rh-php70-php-fpm        0:off   1:off   2:on    3:on    4:on    5:on    6:off
# chkconfig rh-php70-php-fpm off
# chkconfig --list rh-php70-php-fpm
rh-php70-php-fpm        0:off   1:off   2:off   3:off   4:off   5:off   6:off

各種確認

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

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

# php-fpm -v
PHP 7.0.27 (fpm-fcgi) (built: Apr  4 2018 13:50:47)
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies

# yum info rh-php70-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-php70-php-fpm
Arch        : x86_64
Version     : 7.0.27
Release     : 1.el6
Size        : 3.9 M
Repo        : installed
From repo   : centos-sclo-rh
Summary     : PHP FastCGI Process Manager
URL         : http://www.php.net/
License     : PHP and Zend and BSD
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.
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