RockyLinux9.5でWordPress環境構築した際のメモです。
今回はPHPをインストールし設定します。
phpをインストール
PHPのモジュールリストを確認
sudo dnf module list php
remi-8.2 モジュールのインストール
sudo dnf module install php:remi-8.2
sudo dnf install php
PHP拡張モジュールをインストール
利用目的によっては他の拡張モジュールが必要になるかもしれません。
sudo dnf install php-curl php-gd php-mysqlnd
設定ファイル(php.ini)の編集
オリジナルをバックアップ
sudo cp /etc/php.ini /etc/php.ini.org
vimでphp.iniを編集
sudo vim /etc/php.ini
/etc/php.ini
; expose_php = On
↓
expose_php = Off
;post_max_size = 8M
↓
post_max_size = 128M
;upload_max_filesize = 2M
↓
upload_max_filesize = 128M
;date.timezone =
↓
date.timezone = "Asia/Tokyo"
;mbstring.language = Japanese
↓
mbstring.language = Japanese
;mbstring.internal_encoding =
↓
mbstring.internal_encoding = UTF-8
;mbstring.http_input =
↓
mbstring.http_input = UTF-8
;mbstring.http_output =
↓
mbstring.http_output = pass
;mbstring.encoding_translation = Off
↓
mbstring.encoding_translation = On
;mbstring.detect_order = auto
↓
mbstring.detect_order = auto
;mbstring.substitute_character = none
↓
mbstring.substitute_character = none
編集後、php-fpmとhttpdを再起動します。
systemctl restart php-fpm
systemctl restart httpd
確認
ドキュメントルートにphpinfo()を記述した index.php
ファイルを作成します。
echo '<?php phpinfo(); ?>' > /var/www/yoursite.com/index.php
ブラウザ http://xxx.xxx.xxx.xxx (IPアドレス)からアクセスし、PHPの情報が表示されていれば成功です。
動作確認後、index.phpファイルは削除しておきます。
rm -f /var/www/yoursite.com/index.php