CentOS Stream 8にphp7.2をインストールする

2021年12月19日

環境
# cat /etc/redhat-release
CentOS Stream release 8

インストールの方法
1.リポジトリを追加します
# sudo dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm

2.システムパッケージをアップデートします
# sudo dnf update

3.有効になっている PHP のバージョンを確認します

#  dnf module list php
CentOS Stream 8 - AppStream
Name     Stream         Profiles                       Summary
php      7.2 [d][e]     common [d], devel, minimal     PHP scripting language
php      7.3            common [d], devel, minimal     PHP scripting language
php      7.4            common [d], devel, minimal     PHP scripting language
略

4. 他バージョンが有効な場合は一旦リセットします
# dnf module reset php

5.php7.2をンストールします
# dnf module enable php:7.2
# dnf module -y install php:7.2/common

6.バージョンを確認します

# php -v
PHP 7.2.24 (cli) (built: Oct 22 2019 08:28:36) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies

7.動作確認
# echo “<?php echo 'PHP 7.2 test page’.\"\n\"; ?>" > test01.php
# php test01.php
PHP 7.2 test page

CentOS Stream 8

Posted by arkgame