yoshikazu0110
@yoshikazu0110 (h y)

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

denied for user 'xxxxx'@'xxxxxxxxxxxxx' (using password: YES)

解決したいこと

同じネットワーク上以下の二つのコンテナを作成
・rails server
・mysql server
この時にrails serverでdb:migrateしますが、掲題のエラーメッセージが出てなかなか解決できません。

denied for user 'xxxxx'@'xxxxxxxxxxxxx' (using password: YES)

解決方法など教えていただけないでしょうか?

自分で試したこと

・共通ネットワークの作成、以下を参考
https://zenn.dev/tsuboyataiki/articles/6f74f6a1f6fd7a
・rails server と mysql server の ping での疎通確認
・mysql server の my.cnf listen用のbind-address設定
・エラーメッセージで出たusernameとipでuserの作成

0

1Answer

CREATE USER 'nnnn'@'xxx.xxx.xxx.xxx' IDENTIFIED BY 'password';

は何かしらのパスワードを割り当てたデータベースユーザー nnnn を作るという SQL 文です。これはエラーメッセージではありません。何かエラーがあるとしたらそれ以降のメッセージに出ていると思います。

1Like

Comments

  1. @yoshikazu0110

    Questioner

    間違えてユーザー作成クエリ掲載していました。以下のようなエラーメッセージが出ていましたが自己解決できました。
    denied for user 'xxxxx'@'xxxxxxxxxxxxx' (using password: YES)

Your answer might help someone💌