はじめに
IUS Community Projectを利用してCentOS6にPHP-FPM7.1をインストール
親記事:PHP, PHP-FPMの各種インストール方法とEOLまとめ
参考:Usage - IUS
サポート
本手法で導入した場合、PHP: Supported Versions/PHP: Unsupported Branchesより、2019-12-01がEOLになると思われる。
それ以降に報告された脆弱性や不具合への対応は実施されない可能性がある。
LOG
インストール
# cat /etc/redhat-release
CentOS release 6.10 (Final)
# yum install -y https://centos6.iuscommunity.org/ius-release.rpm
... 略
# yum install -y php71u-fpm
... 略
php-fpm起動/停止
# service php-fpm start
Starting php-fpm: [ OK ]
# service php-fpm status
php-fpm (pid 129) is running...
# service php-fpm stop
Stopping php-fpm: [ OK ]
# service php-fpm status
php-fpm is stopped
php-fpm自動起動設定/設定解除
# chkconfig php-fpm on
# chkconfig --list php-fpm
php-fpm 0:off 1:off 2:on 3:on 4:on 5:on 6:off
# chkconfig php-fpm off
# chkconfig --list php-fpm
php-fpm 0:off 1:off 2:off 3:off 4:off 5:off 6:off
各種確認
# 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.1.32 (fpm-fcgi) (built: Aug 30 2019 15:17:39)
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2018 Zend Technologies
# yum info php71u-fpm
Loaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
* base: ty1.mirror.newmediaexpress.com
* epel: ftp.riken.jp
* extras: ty1.mirror.newmediaexpress.com
* updates: ty1.mirror.newmediaexpress.com
Installed Packages
Name : php71u-fpm
Arch : x86_64
Version : 7.1.32
Release : 1.el6.ius
Size : 4.0 M
Repo : installed
From repo : ius
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.