PHPインストール用にリポジトリをインストールする方法
リポジトリを確認
epel
やremi
のリポジトリがcentos上にあるか確認
ls -l /etc/yum.repos.d | egrep 'epel|remi'
- 実行結果
-rw-r--r-- 1 root root 1457 9月 5 2021 epel-testing.repo -rw-r--r-- 1 root root 1358 9月 5 2021 epel.repo
たとえば、上記のように表示された場合は、epel
のリポジトリはあるがremi
はリポジトリがない状態
remiリポジトリをインストール
remi
リポジトリが既に入っている場合は実行しなくてOK
CentOS7の場合
yum install https://rpms.remirepo.net/enterprise/remi-release-7.rpm -y
remi-release-7.rpm
をインストールしている
CentOS8の場合
yum install https://rpms.remirepo.net/enterprise/remi-release-8.rpm -y
remi-release-8.rpm
をインストールしている
epelリポジトリをインストール
epel
リポジトリが既に入っている場合は実行しなくてOK
yum install epel-release -y
epel
リポジトリをインストールしている
リポジトリを再確認
ls -l /etc/yum.repos.d | egrep 'epel|remi'
- 実行結果
-rw-r--r-- 1 root root 1457 9月 5 2021 epel-testing.repo -rw-r--r-- 1 root root 1358 9月 5 2021 epel.repo -rw-r--r-- 1 root root 855 1月 5 22:43 remi-modular.repo -rw-r--r-- 1 root root 456 1月 5 22:43 remi-php54.repo -rw-r--r-- 1 root root 1314 1月 5 22:43 remi-php70.repo -rw-r--r-- 1 root root 1314 1月 5 22:43 remi-php71.repo -rw-r--r-- 1 root root 1314 1月 5 22:43 remi-php72.repo -rw-r--r-- 1 root root 1314 1月 5 22:43 remi-php73.repo -rw-r--r-- 1 root root 1314 1月 5 22:43 remi-php74.repo -rw-r--r-- 1 root root 1314 1月 5 22:43 remi-php80.repo -rw-r--r-- 1 root root 1314 1月 5 22:43 remi-php81.repo -rw-r--r-- 1 root root 1314 1月 5 22:43 remi-php82.repo -rw-r--r-- 1 root root 750 1月 5 22:43 remi-safe.repo -rw-r--r-- 1 root root 2605 1月 5 22:43 remi.repo
epel.repo
やremi.repo
が表示されていることを確認する