LoginSignup
1
1

More than 3 years have passed since last update.

RHEL8.2にPHP7.3をインストールする

Last updated at Posted at 2020-12-11

RHEL8.2はPHP7.2と7.3がインストールできるが、そのままの状態ではバージョン7.2がインストールされる。

# PHP 7.2 がインストールされる
yum install php

バージョン7.3をインストールするには、バージョン7.3のモジュールをデフォルトにしてからインストールするか、バージョン番号を指定してインストールする。

# PHP 7.3 モジュールをデフォルトにする
yum module enable php:7.3
# PHP 7.3 がインストールされる
yum install php

# もしくは、
# モジュールのデフォルトストリームは変更せずにインストールする
yum install @php:7.3

参考

1
1
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
1
1