蘋(píng)果mac如何更改mysql root密碼?蘋(píng)果Mac重置mysql root密碼步驟。最近有使用蘋(píng)果mac的用戶詢問(wèn)小編蘋(píng)果mac如何更改mysql root密碼?那么小編在這里分享一下蘋(píng)果Mac重置mysql root密碼步驟,有需要的伙伴不要錯(cuò)過(guò)哦!
蘋(píng)果Mac重置mysql root密碼步驟:
1.停止 mysql server. 通常是在 '系統(tǒng)偏好設(shè)置' > MySQL > 'Stop MySQL Server'
2.打開(kāi)終端,輸入:
sudo /usr/local/mysql/bin/mysqld_safe --skip-grant-tables
3 . 打開(kāi)另一個(gè)新終端,輸入:
sudo /usr/local/mysql/bin/mysql -u root UPDATE mysql.user SET authentication_string=PASSWORD('新密碼') WHERE User='root';
4.重啟MySQL.
*以上方法針對(duì) MySQL V5.7.9, 舊版的mysql請(qǐng)使用:UPDATE mysql.user SET Password=PASSWORD('新密碼') WHERE User='root';