前提・実現したいこと
MySQL初心者です。
いろいろといじっていたら、userを全て消してしまいました。
データベースやテーブルを作成・一覧を表示させる権限を取り戻したいです。
もっと言うと、初期設定に戻したいです。。。
発生している問題・エラーメッセージ
データベースやテーブルを作成(Pythonを使って)できても、一覧の表示ができず、以下のメッセージがでます。
ERROR 1449 (HY000): The user specified as a definer ('mysql.infoschema'@'localhost') does not exist
該当のソースコード
mysql> use test2
Database changed
mysql> SELECT * FROM persons;
+----+------+
| id | name |
+----+------+
| 1 | Mike |
+----+------+
1 row in set (0.00 sec)
mysql> show databases;
ERROR 1449 (HY000): The user specified as a definer ('mysql.infoschema'@'localhost') does not exist
試したこと
下記URLのHPに従って、mysql_upgrade -uroot -pを実行(パスワードも入力)しましたが、
リンク内容
次のメッセージが出ました。
The mysql_upgrade client is now deprecated. The actions executed by the upgrade client are now done by the server.
To upgrade, please start the new MySQL binary with the older data directory. Repairing user tables is done automatically. Restart is not required after upgrade.
The upgrade process automatically starts on running a new MySQL binary with an older data directory. To avoid accidental upgrades, please use the --upgrade=NONE option with the MySQL binary. The option --upgrade=FORCE is also provided to run the server upgrade sequence on demand.
It may be possible that the server upgrade fails due to a number of reasons. In that case, the upgrade sequence will run again during the next MySQL server start. If the server upgrade fails repeatedly, the server can be started with the --upgrade=MINIMAL option to start the server without executing the upgrade sequence, thus allowing users to manually rectify the problem.
補足情報(FW/ツールのバージョンなど)
ターミナルから操作しても同じ現象が起きます。
使用コンピュータ: Mac バージョン10.15.3
MySQL: 8.0.19
回答1件
あなたの回答
tips
プレビュー