Mac忘記mysql登錄密碼

  1. 默認mysql配置文件在/etc/my.cnf,sudo root賬號找到[mysqld]添加skip-grant-tables(Mac安裝Mysql5.7請戳 http://www.itdecent.cn/p/1fdfba9173f8
cat /etc/my.cnf
[mysqld]
skip-grant-tables
  1. 重啟mysql
(base)  tpt@localhost:/usr/local/etc $ sudo mysql.server restart
Password:
Shutting down MySQL
. SUCCESS!
Starting MySQL
. SUCCESS!
  1. 直接登錄mysql(無需輸入賬號密碼),更改root密碼
(base)  tpt@localhost:/usr/local/etc $ mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.29 MySQL Community Server (GPL)

Copyright (c) 2000, 2020, 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> 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
mysql> update user set authentication_string = password('你的密碼'), password_expired = 'N', password_last_changed = now() where user = 'root';
Query OK, 1 row affected, 1 warning (0.03 sec)
Rows matched: 1  Changed: 1  Warnings: 1

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> quit;
Bye
  1. 注釋掉/etc/my.cnf中的skip-grant-tables
vim /etc/my.cnf
[mysqld]
#skip-grant-tables
  1. 重啟mysql
(base)  tpt@localhost:/usr/local/etc $ sudo mysql.server restart
Password:
Shutting down MySQL
. SUCCESS!
Starting MySQL
. SUCCESS!
  1. 用戶名密碼登錄成功!
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
【社區(qū)內容提示】社區(qū)部分內容疑似由AI輔助生成,瀏覽時請結合常識與多方信息審慎甄別。
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發(fā)布,文章內容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務。

相關閱讀更多精彩內容

  • 1.A simple master-to-slave replication is currently being...
    Kevin關大大閱讀 6,253評論 0 3
  • 下載安裝好 MySQL 以后就會出現(xiàn)在系統(tǒng)偏好設置里, 雙擊進入設置界面,此時 MySQL 還未啟動 點擊 Sta...
    顧顧314閱讀 861評論 0 0
  • 1. 啟動與關閉MySQL 1.1 單實例MySQL啟動與關閉 正確啟動單實例MySQL數(shù)據(jù)庫 這條命令是把數(shù)據(jù)庫...
    阿喪小威閱讀 504評論 0 0
  • 二十年沒在出生的家過年了。今年回家和爸爸、哥哥、兩個侄女一起過的年。我臘月二十四到家,第二天開始由我唱主角和大...
    梅花雪兒閱讀 205評論 0 1
  • 春啊春, 我等你來。 春有泥土氣息, 春給世界帶了美好! 帶給我們幸福和享樂! 春天啊春天! 我為你感到驕傲, 春...
    n王若萱閱讀 169評論 0 0

友情鏈接更多精彩內容