※これ以降の操作はroot権限にて実行してください。
sshログイン方法については、こちらをご参照ください。
初期パスワードの「wordpress」を入力して、MySQLにログインします。
[root@vps ~]# mysql -u wordpress -p
Enter password:wordpress
新しいパスワードの欄にお客様任意のパスワードを入力します。
[root@vps ~]# mysql -u wordpress -p
Enter password:wordpress
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5325
Server version: 5.1.66 Source distribution
Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>set PASSWORD for wordpress@localhost=PASSWORD('新しいパスワード');
Query OK, 0 rows affected (0.00 sec) と表示されたら、「exit」と入力してMySQLからログアウトします。
mysql>set PASSWORD for wordpress@localhost=PASSWORD('新しいパスワード');
Query OK, 0 rows affected (0.00 sec
mysql> exit
Bye
[root@vps ~]# mysql -u wordpress -p
Enter password:[4]で設定した新しいパスワード
変更後のパスワードで、MySQLにログイン出来たら、パスワード変更が正常に完了です。
vi /var/www/wordpress/wp-config.php の赤文字箇所を書き換えて保存します。
[root@vps ~]# vi /var/www/wordpress/wp-config.php
// ** MySQL 設定 - こちらの情報はホスティング先から入手してください。 ** //
/** WordPress のためのデータベース名 */
define('DB_NAME', 'wordpress');
/** MySQL データベースのユーザー名 */
define('DB_USER', 'wordpress');
/** MySQL データベースのパスワード */
define('DB_PASSWORD', 'wordpress');
/** MySQL のホスト名 */
define('DB_HOST', 'localhost');
/** データベースのテーブルを作成する際のデータベースのキャラクターセット */
define('DB_CHARSET', 'utf8');
/** データベースの照合順序 (ほとんどの場合変更する必要はありません) */
define('DB_COLLATE', '');