해결 방법: 먼저 터미널을 열고 "mysql -u root" 명령을 입력한 다음 "UPDATE mysql.user SET 인증_string=PASSWORD('새 비밀번호') WHERE User='root';" 명령을 입력하세요.
(권장 튜토리얼: mysql 비디오 튜토리얼)
mac
1에서 mysql에 로그인할 때 비밀번호를 잊어버리는 솔루션1. /mysql/bin
2. mysql -uroot -p, 다음 명령을 사용하여 로그인하고 오류 메시지를 보고하세요.
오류 메시지:
Enter password: ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
3. 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. 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 SET 인증_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 중국어 웹사이트의 기타 관련 기사를 참조하세요!