1. ホーム
  2. mysql

[解決済み] エラー 1044 (42000)。データベース 'db' へのユーザー ''@'localhost'' のアクセスが拒否されました。

2022-02-07 10:24:28

質問

MySQL でクエリを書き始めたいのですが、どうすればいいですか?

show grants を表示します。

+--------------------------------------+
| Grants for @localhost                |
+--------------------------------------+
| GRANT USAGE ON *.* TO ''@'localhost' |
+--------------------------------------+

ユーザーIDはないのですが、ユーザーを作ろうとすると、特権がありません。

mysql> CREATE USER 'parsa'@'localhost' IDENTIFIED BY 'parsa';
ERROR 1227 (42000): Access denied; you need (at least one of) the CREATE USER pr
ivilege(s) for this operation

rootでサインインしようとしました。

mysql> mysql -u root -p;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near 'mysql
 -u root -p' at line 1
mysql> mysql -u root -p root;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near 'mysql
 -u root -p root' at line 1

解決方法は?

いいえ。 mysql -u root -p を MySQL のコマンドラインではなく、bash で実行します。 mysql にいる場合は、次のように入力して終了できます。 終了 .