0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MySQLでrootユーザーのパスワード忘れてしまった際に初期化・再設定する方法【Mac OS】

Last updated at Posted at 2019-08-30

環境

Mac OS: Mojave Version10.14.6
MySQL: Version8.0.17
MySQLはHomebrewでinstallした。

手順

1.MySQLサーバープロセスを停止する(起動していなかったら不要)

# mysql.server stop

2.MySQLサーバープロセスをセーフモードで起動するその際プラグインをロードしない
(パスワードなしでのログインが可能になる)

# /usr/local/bin/mysqld_safe  --skip-grant-tables

3.MySQLへrootユーザーでログインする
※「2.」を行ったためパスワードの入力が不要

# mysql -u root

4.パスワードを空で設定する

mysql> UPDATE mysql.user SET authentication_string=null WHERE User='root';

5.MySQLをログアウトする

mysql> exit

6.MySQLサーバープロセスを再起動する

# mysql.server restart

7.MySQLへrootユーザーでログインする

パスワードは先程設定した空なので何も入力せずエンターを押下する

# mysql -u root -p
Enter password:

8.rootユーザーのパスワードを変更する
※ 'password'の部分にMySQLのパスワードポリシーに準拠した任意のパスワードを入力する

mysql> ALTER USER 'root'@'localhost' identified BY 'password';
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?