這篇文章主要介紹了ubuntu系統安裝mysql登陸提示解決Mysql ERROR 1045 (28000): Access denied for user root@ localhost問題,需要的朋友可以參考下方
第一種方式:
skip-grant-tables:非常有用的mysql啟動參數
介紹一個非常有用的mysql啟動參數— — --skip-grant-tables。顧名思義,就是在啟動
mysql時不啟動grant-tables,授權表。有什麼用呢?當然是忘記管理員密碼後有用。
以命令列參數啟動mysql:# /usr/bin/mysqld_safe --skip-grant-tables &
3、修改管理員密碼:##
use mysql; update user set password=password('yournewpasswordhere') where user='root'; flush privileges; exit;
GRANT ALL PRIVILEGES on *.* to 'root'@'localhost' identified by '密码'; flush privileges;
mysql>update mysql.user set password=password('新密码') where User="test" and Host="localhost"; mysql>flush privileges; mysql>delete from user where User='root' and Host='localhost'; mysql>flush privileges; mysql>grant select,delete,update,create,drop on *.* to test@"%" identified by "1234"; mysql> UPDATE user SET Host='127.0.0.1' WHERE User='root' AND Host='localhost';mysql> flush privileges;
以上是ubuntu系統中Mysql ERROR 1045 (28000)報錯問題的解決方法的圖文詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!