1.設置管理員root密碼為123 開啟MySQL服務後 再次登錄不輸入密碼,出現一下結果。 2.更改密碼 3.忘記密碼 3.1關閉MySQL伺服器 3.2跳過授權表 3.3再次登錄時無需輸入密碼 3.4更改密碼為'abc' 3.5刷新許可權後退出 3.6關閉mysql進程 3.7再次開啟服務,使用新 ...
1.設置管理員root密碼為123
開啟MySQL服務後
PS C:\WINDOWS\system32> mysqladmin -uroot -p password "123"
Enter password:
mysqladmin: [Warning] Using a password on the command line interface can be insecure.
Warning: Since password will be sent to server in plain text, use ssl connection to ensure password safety.
#直接回車,忽略上述提示
再次登錄不輸入密碼,出現一下結果。
PS C:\WINDOWS\system32> mysql -uroot -p
Enter password:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
2.更改密碼
PS C:\WINDOWS\system32>mysqladmin -uroot -p"123" password "456" #修改mysql密碼,因為已經有密碼了,所以必須輸入原密碼才能設置新密碼
3.忘記密碼
3.1關閉MySQL伺服器
PS C:\WINDOWS\system32> net stop mysql
MySQL 服務正在停止.
MySQL 服務已成功停止。
3.2跳過授權表
PS C:\WINDOWS\system32> mysqld --skip-grant-tables
3.3再次登錄時無需輸入密碼
PS C:\WINDOWS\system32> mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.27 MySQL Community Server (GPL)
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
3.4更改密碼為'abc'
mysql> update mysql.user set authentication_string =password('abc') where User='root';
Query OK, 1 row affected (0.01 sec)
Rows matched: 1 Changed: 1 Warnings: 0
3.5刷新許可權後退出
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql> exit
Bye
3.6關閉mysql進程
PS C:\WINDOWS\system32> tasklist |findstr mysql
mysqld.exe 11452 Services 0 173,284 K
PS C:\WINDOWS\system32> taskkill /F /PID 11452
成功: 已終止 PID 為 11452 的進程。
3.7再次開啟服務,使用新密碼登錄
PS C:\WINDOWS\system32> net start mysql
MySQL 服務正在啟動 .
MySQL 服務已經啟動成功。
PS C:\WINDOWS\system32> mysql -uroot -p
Enter password: ***
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.27 MySQL Community Server (GPL)
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>