😀

Lightsail 上の WordPress に Redis Cache を導入する

2021/07/25に公開

はじめに

Lightsail 上の WordPress に Redis Object Cache を導入する。

Object Cache を導入すると、サイト表示が早くなるらしい。

環境

動作環境は以下の通り。

Linux ip-■■■-■■■-■■■ 4.19.0-17-cloud-amd64 #1 SMP Debian 4.19.194-3 (2021-07-18) x86_64

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
       ___ _ _                   _
      | _ |_) |_ _ _  __ _ _ __ (_)
      | _ \ |  _| ' \/ _` | '  \| |
      |___/_|\__|_|_|\__,_|_|_|_|_|
  
  *** Welcome to the Bitnami WordPress 5.6.1-1                     ***

手順

redis-server 導入

Lightsail のインスタンス画面から、ターミナルのアイコンをクリックして、Webuターミナルを起動する。

20210725-211018-Lightsail.jpg

redis-server をインストールする。

sudo apt update -y
sudo apt install redis-server -y

redis-server を起動する。

sudo systemctl start redis-server

Redis Object Cache プラグインの導入

プラグインの新規追加画面でRedis Object Cache を選択。

20210725-210833-プラグインを追加 ‹ Space Software Portal — WordPress.jpg

左下の【Enable Object Cache】ボタンをクリック。

20210725-210854-Redis Object Cache ‹ Space Software Portal — WordPress.jpg

【Status】が 【Connected】になったことを確認する。

20210725-210921-Redis Object Cache ‹ Space Software Portal — WordPress.jpg

参考サイト

https://8091.info/installing-redis-local-on-nginx-wordpress-lightsail/

https://web-geek-site.com/wpで「永続的なオブジェクトキャッシュは有効化さ/

Discussion