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 3 years have passed since last update.

ローカルでのエラーAccess denied for user 'root'@'localhost' (using password: NO)が出たとき。

Posted at

・エラー:Access denied for user 'root'@'localhost' (using password: NO)

・問題は『PWがないので開かない。』ということです。

・解決方法
 ・root ユーザーのPW設定を無くして、rails sで動くようにする。
 ・mysqlで設定したパスワードをdatabase.ymlに書く。

・手順
 ・mysqlの起動 
  sudo service mysql start

 ・mysqlにログイン 
  mysql -u root -p

 ・使用するデータベースを選択する。 
  mysql> use mysql;

・パスワードを空にする。
  mysql> update user set authentication_string='' where user='root';
 
 ・変更が成功したらmysqlを閉じる。
  mysql> exit

・変更を反映させるため、,mysqlをストップ。
  sudo service mysql stop

・再び起動。
  sudo service mysql start

・パスワードなしで、ログインできることを確認。
  mysql -u root

・rails s 立ち上げる(rails s をしていた場合は一度閉じてからもう一度立ち上げる)。

以上、お疲れ様で〜〜〜す。
 
  

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?