はじめに
Software Collection(SCL)を利用してCentOS6にNginx1.10をインストール
親記事:Nginxの各種インストール方法とEOLまとめ
参考:Quick Start — Software Collections
サポート
本手法で導入した場合、Red Hat Software Collections Product Life Cycle - Red Hat Customer Portalより、2020-04がEOLだと思われる。
それ以降に報告された脆弱性や不具合への対応は実施されない可能性がある。
LOG
レポジトリ登録
# yum install -y centos-release-scl
インストール
# cat /etc/redhat-release
CentOS release 6.10 (Final)
# yum install -y rh-nginx110
# scl enable rh-nginx110 bash
... 略
nginx起動/停止
# service rh-nginx110-nginx start
Starting nginx: [ OK ]
# service rh-nginx110-nginx status
nginx (pid 191) is running...
# service rh-nginx110-nginx stop
Stopping nginx: [ OK ]
# service rh-nginx110-nginx status
nginx is stopped
nginx自動起動設定/設定解除
# chkconfig rh-nginx110-nginx on
# chkconfig --list rh-nginx110-nginx
rh-nginx110-nginx 0:off 1:off 2:on 3:on 4:on 5:on 6:off
# chkconfig rh-nginx110-nginx off
# chkconfig --list rh-nginx110-nginx
rh-nginx110-nginx 0:off 1:off 2:off 3:off 4:off 5:off 6:off
各種確認
# which nginx
/opt/rh/rh-nginx110/root/usr/sbin/nginx
# nginx -v
nginx version: nginx/1.10.2
# yum info rh-nginx110
Loaded plugins: fastestmirror, ovl
Loading mirror speeds from cached hostfile
* base: ty1.mirror.newmediaexpress.com
* centos-sclo-rh: ty1.mirror.newmediaexpress.com
* centos-sclo-sclo: ty1.mirror.newmediaexpress.com
* extras: ty1.mirror.newmediaexpress.com
* updates: ty1.mirror.newmediaexpress.com
Installed Packages
Name : rh-nginx110
Arch : x86_64
Version : 1.10
Release : 8.el6
Size : 0.0
Repo : installed
From repo : centos-sclo-rh
Summary : Package that installs rh-nginx110
License : GPLv2+
Description : This is the main package for rh-nginx110 Software Collection.