承前。
MySQL 5.6 のインストール
2013-07-30 08:22:26 3484 [Note] Plugin ‘FEDERATED’ is disabled. ・ ・ ・ ・ 2013-07-30 08:22:27 3484 [Warning] No existing UUID has been found, ………… ・ ・ ・ ・ 2013-07-30 08:22:27 3484 [Note] mysqld: ready for connections. Version: ‘5.6.12’ socket: ” port: 3306 MySQL Community Server (GPL) |
上記以外の error や warning が出るときは, my.ini をもう一度見直す。ここで,多分 Windoes Firewall から 3303 port についての アラートが来ると思うので,しっかり確認の後,許可。
もうひとつ cmd.exe を管理者として起動し, mysqld を止める。
>Drive_SV:
>cd Drive_SV:MySQLbin
>mysqladmin -u root shutdown
root のパスワードを変更。
cmd.exe を管理者として起動する。
>mysql -u root
>SET PASSWORD FOR root@localhost=PASSWORD(‘password’);
> quit
ログインできるかチェックする。
>mysql -u root -p
Enter password: ************
> quit
phpMyAdmin4 のインストール。
ディレクトリ phpMyAdmin を Drive_SV に移動する。
<Directory “Drive_SV:/phpMyAdmin”>
Options None
AllowOverride None
Require ip Lan IP range.
</Directory>
<Directory “Drive_SV:/phpMyAdmin/libraries”>
Require all denied
</Directory>
httpd.conf をカスタマイズする (場所:Apache24conf)。
Supplemental configuration 区画の最後に下記の2行を加える。
# phpMyAdmin settings
Include conf/extra/phpMyAdmin.conf
Username: root
Password: MySQL root のパスワード
ここで,画面の下のほうに次のような警告が出る。
The phpMyAdmin configuration storage is not completely configured,
some extended features have been deactivated. To find out why click here.
phpMyAdmin configuration storage の構築を完了するために,使用中の database phpmyadmin をインポートする (まったくの新規導入の場合は, phpMyAdmin configuration storage phpMyAdmin 環境保管領域を参照)。
WordPress 用の user(WP-User) と database(WPdatabase) を作っておく。
WP-user には, Grant 以外のすべての Global privileges を与える。 WP-user には, Grant 以外の WPdatabase privileges は与えるが, Global privileges は一切与えないこと。 collation は utf8_general_ci にする。
This website uses cookies.