MySQL の root パスワードをリセットする

MySQL の root パスワードが?になったときの対応

LIGincさん のページを参考にさせていただきました!

◆下のように root のパスワードが受け付けられなくなったときのお話しです。
[root@***]# mysql -u root -p
Enter password:
ERROR 1045 (28000): Access denied for user ‘root’@’localhost’ (using password: YES)

◆起動している MySQL を停止する
[root@***]# service mysqld stop
mysqld を停止中:                                           [  OK  ]

◆MySQLをセーフモードで起動する
[root@***]# mysqld_safe –skip-grant-tables &
[2] 676
[1]   Exit 127                mysql_safe –skip-grant-tables
Starting mysqld daemon with databases from /var/lib/mysql

◆MySQL へ root でログインする
[root@***]# mysql -u root
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.0.95 Source distribution

Copyright (c) 2000, 2011, 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.

◆root の新しいパスワードをセットする
mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> update user set password=PASSWORD(“パスワード”) where User=’root’;
Query OK, 1 row affected (0.01 sec)
Rows matched: 1  Changed: 1  Warnings: 0

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> quit;
Bye

◆セーフモードの MySQL を停止する
[root@***]# service mysqld stop
STOPPING server from pid file /var/run/mysqld/mysqld.pid
160318 11:14:26  mysqld ended

mysqld を停止中:                                           [  OK  ]
[2]+  Done                    mysqld_safe –skip-grant-tables

◆MySQL を起動する
[root@***]# service mysqld start
mysqld を起動中:                                           [  OK  ]

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です