0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【RockyLinux 9.5 で WordPress 環境構築】PHPのインストールと設定

Last updated at Posted at 2025-02-21

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

RockyLinux9.5でWordPress環境構築

  1. さくらのVPS設定
  2. Apacheのインストールと設定
  3. PHPのインストールと設定
  4. mariaDBのインストールと設定
  5. WordPressのインストールと設定
  6. DNS設定とCertbotによるSSL証明書の取得と設定
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?