- 目的
- linux環境に最新のphpをインストールする
- 結論
- 以下のコマンドを実行すればできる
- コマンド
- epelのアップデート
-
yum install epel-release
-
- remiのリポジトリを更新
-
yum -y install http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
- インストールできない場合は以下のリポジトリファイルからバージョンが一致するものを検索
- リポジトリファイルの確認は
-
http://rpms.remirepo.net/enterprise/
-
-
- phpをインストール
-
yum -y install –enablerepo=remi,remi-php73 php php-devel php-mbstring php-pdo php-mysql php-gd php-xml php-mcrypt
-
- epelのアップデート
- 詳細
- remiのリポジトリを更新
- やらないと
- phpの最新バージョンがyum installの対象に入ってこない
- やらないと
- phpをインストール
- やらないと
- 当たり前だけどphpがインストールできない。
- やらないと
- remiのリポジトリを更新
コメント