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

More than 3 years have passed since last update.

レンタルサーバからエンハンスドDBに接続する形でWordPressを動かしてみた

Last updated at Posted at 2021-07-18

はじめに

レンタルサーバからエンハンスドDBに接続する形でWordPressを動作させることができそうか確認してみました。

エンハンスドDBはMySQLと互換性のあるデータベースサービスです。
2021年7月現在さくらのクラウドユーザーはLabプロダクトとして無料で利用可能です。
https://www.sakura.ad.jp/information/pressreleases/2021/07/08/1968207460/

エンハンスドDBの準備

クラウドコンパネでDBを作成する
image.png

データベース名(これがデータベースサーバーへ接続する際のユーザー名としても使用されるようです):****
パスワード:****

image.png

作成すると接続先ホスト名がわかりました。

image.png

WordPressの(クイックじゃない)インストール

今回はレンタルサーバにSSHログインして公式の手順を見ながらインストールしました。

実行コマンドイメージ

適当なディレクトリを作成
% mkdir tekitou
% cd tekitou

zip をダウンロード
% wget https://wordpress.org/latest.tar.gz

zip を展開
tar -xzvf latest.tar.gz

展開されたファイル等を1階層上に移動
% cd wordpress
% mv * ..
% cd ..
% rmdir wordpress

ブラウザからアクセスし言語を設定後DBを設定
image.png
image.png

WordPressの有名な5分間インストールプロセスを実行
image.png

無事インストール完了
image.png

#おわりに

以上により、レンタルサーバからエンハンスドDBに接続する形でWordPressを動作させることができそうであることを確認しました。

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