「エアコンの安全な修理・適切なフロン回収」はこちら

Debian10.13 ; MySQL8 , WordPress インストール

1. MySQL 8インストール

1. 1 パッケージインデックスを更新

必要パッケージをインストール

1.2 MySQLリポジトリをインポート

プロンプトが表示されたら、MySQL 8.0 リポジトリをデフォルトとして追加することを確認し、その後、タブで「OK」に移動し、キーを押してバージョンのインストールを確認します。

リポジトリが追加されたら、以下のコマンドを実行して、MySQL 8.0をインストールします。

1.3 MySQLインストール

MySQLのルートパスワード入力を2回

新しい認証システムについて表示

<OK>を選択

認証プラグインのデフォルトに合わせ、<OK>を選択

aptpolicyインストール

動作確認

Mysqlバージョン確認

1.4. MySQLサーバのセキュリティ設定

MySQLサーバのセキュリティ関連の設定を行うためにmysql_secure_installtionというツールを実行します。
実行すると、質問形式でいくつかのセキュリティ設定がはじまります。はじめに以下のようにパスワードバリデーション用のプラグインを使用するか確認されます。パスワードバリデーションというのは、MySQL用のユーザのパスワード強度をチェックし、十分セキュアなパスワードのみ受け付けるよう制限をかけることができます。例えば、最低何文字以上で必ず記号と数値を1文字以上含むなどです。この条件について次の質問で設定できます。
良ければyを入力してEnterを押します

インストール状況

Securing the MySQL server deployment.

Enter password for user root:

VALIDATE PASSWORD COMPONENT can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD component?

Press y|Y for Yes, any other key for No: y

There are three levels of password validation policy:

LOW Length >= 8
MEDIUM Length >= 8, numeric, mixed case, and special characters
STRONG Length >= 8, numeric, mixed case, special characters and dictionary file

Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 0
Using existing password for root.

Estimated strength of the password: 100
Change the password for root ? ((Press y|Y for Yes, any other key for No) : y

New password:xxxxxxxxx

Re-enter new password:xxxxxxxxx

Estimated strength of the password: 100
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL without having to have
a user account created for them. This is intended only for
testing, and to make the installation go a bit smoother.
You should remove them before moving into a production
environment.

Remove anonymous users? (Press y|Y for Yes, any other key for No) : y
Success.

Normally, root should only be allowed to connect from
'localhost'. This ensures that someone cannot guess at
the root password from the network.

Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y
Success.

By default, MySQL comes with a database named 'test' that
anyone can access. This is also intended only for testing,
and should be removed before moving into a production
environment.

Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y

-Dropping test database…
Success.

Removing privileges on test database…
Success.

Reloading the privilege tables will ensure that all changes
made so far will take effect immediately.

Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
Success.

All done!

最後にここまでで設定した内容が表示され、All done!と表示されればセキュリティ設定は完了です

以降 MySQLにアクセスするときは

2.WordPressインストール

2.1 データベース作成

Word Press 用のデータベースを作成します(例として今回はデータベース名を 「wp_db」、ユーザー名を「wp_user」、パスワードを「?Y123456y」)
アカウント作成時「Your password does not satisfy the current policy requirements」が表示される場合はパスワードを8文字以上、英数大文字小文字、記号等を含めてください

2.2 WordPressダウンロードとインストール

①ダウンロードと展開

②Wordpress設定ファイルの編集

wp-config.phpの編集内容

③ファイルの移動

移動されたことを確認後 wordpressディレクトリーとダウンロードしたlatest-ja.tar.gzを削除

④wordpressディレクトリの所有者をapacheにします

⑤ブラウザからアクセスする
http://<FQDN>/wp-admin
にアクセスします。
成功すると下記のWordpressインストール情報入力画面が出力されます。

Debianで「お使いのサーバーの PHP では WordPress に必要な MySQL 拡張を利用できないようです。」表示されたら

Debianサーバーでphpやmysqlがインストール済みなのにWordpressインストール時に「お使いのサーバーの PHP では WordPress に必要な MySQL 拡張を利用できないようです。」と表示される場合は、下記を確認しましょう。ライブラリ関連がインストールされているか確認、phpのライブラリ関連をインストールしていない場合はインストールします。

MYSQLモジュールのインストール
WordPressはPHPのMYSQLモジュールが必要です。PHPのMYSQLモジュールをインストールしていない場合はインストールします。

インストールが完了したらApacheを再起動をします。

下記入力画面で
サイトのタイトル  任意の名称
ユーザー名     任意の名称
パスワード     任意のパスワード
メールアドレス   管理者用メールアドレス
を入力し、「Wordpressインストール」をクリックする。「ユーザー名」「パスワード」はwordpress管理画面にアクセスするときに必要なため忘れないようにする。

[su_divider divider_color="#617d

タイトルとURLをコピーしました