ubuntu系統(tǒng)中Mysql ERROR 1045 (28000)報(bào)錯(cuò)問(wèn)題的處理方法的圖文詳細(xì)說(shuō)明
發(fā)表時(shí)間:2023-08-28 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]這篇文章主要介紹了ubuntu系統(tǒng)安裝mysql登陸提示 解決Mysql ERROR 1045 (28000): Access denied for user root@ localhost問(wèn)題,需要的朋友可以參考下第一種方式:skip-grant-tables:非常有用的mysql啟動(dòng)參數(shù)介紹一...
這篇文章主要介紹了ubuntu系統(tǒng)
安裝mysql登陸提示 解決Mysql ERROR 1045 (28000): Access denied
for user root@ localhost問(wèn)題,需要的朋友可以參考下
第一種方式:
skip-grant-tables:非常有用的mysql啟動(dòng)參數(shù)
介紹一個(gè)非常有用的mysql啟動(dòng)參數(shù)—— --skip-grant-tables。顧名思義,就是在啟動(dòng)
mysql時(shí)不啟動(dòng)grant-tables,授權(quán)表。有什么用呢?當(dāng)然是忘記管理員密碼后有用。
以命令行參數(shù)啟動(dòng)mysql:# /usr/bin/mysqld_safe --skip-grant-tables &
3、修改管理員密碼:
use mysql;
update user set password=password('yournewpasswordhere') where user='root'; flush privileges; exit;
4、殺死m(xù)ysql,重啟mysql.
然后就可以直接登錄
方法2:
查看mysql安裝的路徑
然后我們更改root用戶的密碼,
查看默認(rèn)密碼先
然后直接登錄
然后再更改root默認(rèn)用戶名和密碼
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;
把Grant_priv修改為‘Y'即可(flush privileges;(執(zhí)行該語(yǔ)句或重啟MySQL后生效)),update mysql.user set Grant_priv='Y' where user='ptmind';
以上就是ubuntu系統(tǒng)中Mysql ERROR 1045 (28000)報(bào)錯(cuò)問(wèn)題的解決方法的圖文詳解的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注php中文網(wǎng)其它相關(guān)文章!
學(xué)習(xí)教程快速掌握從入門(mén)到精通的SQL知識(shí)。