12. phpMyAdmin の環境保管領域を作成する。その1 の続き。
phpMyAdmin の場合
データベース > データベースを作成する >
データベース名:wordpress utf_general_ci > 作成
localhost > データベース > Check Privileges > Add user account
User name: hirose
Host name: ローカル
権限全部 > 作成
ここで設定したユーザーネームやパスワードをWordPressの初期設定で使うので忘れないように。
コマンドで作成する場合
> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | phpmyadmin | +--------------------+ 4 rows in set (0.00 sec) MariaDB [(none)]> create database wordpress; Query OK, 1 row affected (0.01 sec) MariaDB [(none)]> show databases; +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | phpmyadmin | | wordpress | +--------------------+ 5 rows in set (0.00 sec) (ユーザーの作成) MariaDB [(none)]> grant all privileges on wordpress.* to hirose@localhost identified by 'XXX'; ←好きなユーザーとパス Query OK, 0 rows affected (0.00 sec)
phpMyAdmin 側からも作成されているのが確認できる。