解決策: まずターミナルを開いてコマンド「mysql -u root」を入力し、次にコマンド「UPDATE mysql.user SET authentication_string=PASSWORD('新しいパスワード') WHERE User='root';」を入力します。 。
(推奨チュートリアル:mysql ビデオ チュートリアル)
Mac で mysql にログインし、パスワードを忘れた場合 解決策
1. ターミナルを開き、コマンド cd /usr/local/mysql/bin
を入力します。2 、mysql -uroot -p、このコマンドを使用してログインし、エラー メッセージを報告します:
エラー メッセージ:
Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
3. ターミナルを開いて次のように入力します: sudo mysqld_safe --skip-grant-tables
Output
Password: Logging to '/usr/local/mysql/data/localhost.err'.2018-10-10T03:21:40.6NZ mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
4. 開く新しいターミナルに「 mysql -u root 」と入力すると、次の出力が表示されます。
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 16Server version: 5.7.23 MySQL Community Server (GPL) Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql>
5. ターミナルに use mysql と入力すると、次のように表示されます
Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed
6. パスワードの変更: UPDATE mysql.user SETauthentication_string=PASSWORD ('あなたのパスワード') WHERE User='root';
Query OK, 1 row affected, 1 warning (0.01 sec) Rows matched: 1 Changed: 1 Warnings: 1
関連する推奨事項:php training
以上がMacでmysqlパスワードを忘れた問題を解決するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。