不少老鐵,在開始時設置了 MySQL 的密碼,後來一段時間沒有用 MySQL以後,密碼忘了~ QAQ,請別急,如今有如下方法解決密碼忘了的狀況。數據庫
1.首先咱們須要跳過 MySQL 的密碼認證:vim
(1)進入 /etc/my.cnf 文件windows
[root@localhost ~]# vim /etc/my.cnf
(2)在 [mysqld] 的下面添加 " skip-grant-tables " 用來跳過 MySQL 登陸時候的密碼驗證:安全
[mysqld]
skip-grant-tables
2.重啓下 MySQL :post
[root@localhost lib]# systemctl restart mysqld.service
3.進入 MySQL 中使用命令對密碼進行修改:ui
//使用名字叫 mysql(或者本身建立過) 數據庫 mysql> 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 //這裏我把 帳號 root 密碼設置爲 root mysql> update mysql.user set authentication_string=password('root') where user='root' ; Query OK, 1 row affected, 1 warning (0.00 sec) Rows matched: 1 Changed: 1 Warnings: 1 // 刷新 mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) mysql> quit Bye
4.驗證是否對密碼從新設置成功:this
[root@localhost /]# mysql -uroot -proot //注意:這裏通常直接輸入密碼登陸,可能會不安全 mysql: [Warning] Using a password on the command line interface can be insecure. ......