Mac MySql更改原始密碼

2022-07-01 09:15:12 字數 1373 閱讀 1396

➜  tmp mysql -u root -p                   

enter password:

2.直接回車,進入mysql控制台,設定新密碼  

mysql> set password for 'root'@'localhost' = password('你的新密碼');

3.退出重進,直接回車不輸入密碼,提示密碼錯誤

➜  tmp mysql -u root -p

enter password:

error 1045 (28000): access denied for user 'root'@'localhost' (using password: no)

4.輸入剛剛設定的密碼,成功進入

➜  tmp mysql -u root -p

enter password:

welcome to the mysql monitor. commands end with ; or \g.

your mysql connection id is 12

server version: 5.7.27 homebrew

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> show databases

-> ;

+------------------------------+

| database |

+------------------------------+

| information_schema |

| commerce_backend_development |

| commerce_backend_production |

| commerce_backend_test |

| mysql |

| performance_schema |

| sys |

+------------------------------+

7 rows in set (0.01 sec)

Mac MySql 密碼重置

命令列輸入 mysql uroot perror 1045 28000 access denied for user root localhost using password yes 顯然密碼錯誤了。重置密碼步驟如下 暫且不管它,新開乙個命令視窗 cd usr local mysql bin my...

Mac mysql 修改密碼

如果你知道密碼 mysqladmin u root p password 新密碼 mysql資料庫密碼忘記 1.在系統偏好 中,中止mysql服務.2.cd usr local mysql bin sudo mysqld safe skip grant tables 3.登入mysql mysql ...

Mac mysql改使用者密碼

前段時間和幾個朋友一起做個小專案,用svn的時候發現大家mysql資料庫密碼不一樣,網上搜了好長時間總是沒發現能一次管用的方法 也可能是我操作不當哈 又到谷歌去搜了幾個印度人的帖子,發現基本谷歌搜出來的都是同一種方法 基本都是印度人 親測之後發現很有用,幫幾個同樣用mac的朋友也改了,拿出來和大家分...