一、問(wèn)題
有時(shí)候我們登錄Mysql輸入密碼的時(shí)候,會(huì)出現(xiàn)這種情況
mysql -u root -p
Enter Password > '密碼'
錯(cuò)誤:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
或者:錯(cuò)誤:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)
二、解決辦法
修改my.in/my.cnf配置文件
進(jìn)入mysql安裝目錄
編輯my.ini
在[mysqld]下添加skip-grant-tables,保存即可。
使用管理員身份打開(kāi)命令行
?、僦貑ysql:
1、net stop mysql 2、net start mysql
②進(jìn)入mysql,登錄
mysql -u root -p
不用輸入密碼,直接回車(出現(xiàn)Enter Password 也一樣直接回車,即可登陸成功)
③輸入use mysql,修改root的密碼:
update user set authentication_string=password('新密碼') where user='root';
flush privileges;
?、芡顺觯?/p>
quit;
⑤再次重啟mysql:
1、net stop mysql 2、net start mysql
?、逌y(cè)試是否成功就是是否登陸成功咯。
mysql -u root -p
Enter Password>'新密碼'
就不會(huì)出錯(cuò),可以登錄啦!?。?/p>
(另外一種情況就是,,你密碼輸入錯(cuò)誤了,如果是初始化后第一次登錄,出現(xiàn)這種情況的話,很大概率就是密碼錯(cuò)誤,初始化后的密碼要認(rèn)真查看,可能會(huì)因?yàn)榭崭瘛⑿?shù)點(diǎn)等符號(hào)輸錯(cuò))
以上就是解決mysql:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO/YES)的詳細(xì)內(nèi)容,更多關(guān)于ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO/YES) 的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!
您可能感興趣的文章:- mysql ERROR 1045 (28000)問(wèn)題的解決方法
- 解決mysql ERROR 1045 (28000)-- Access denied for user問(wèn)題
- ERROR 1045 (28000): Access denied for user ''''root''''@''''localhost'''' (using password: YES)實(shí)用解決方案
- MySQ登錄提示ERROR 1045 (28000)錯(cuò)誤的解決方法
- 解決ubuntu 16.04安裝mysql5.7.17后,登錄時(shí)出現(xiàn)ERROR 1045 (28000): Access denied for user ''root''@''localhost''問(wèn)題
- MySQL ERROR 1045 (28000): Access denied for user ''root''@''localhost'' (using password: NO) 的原因分解決辦法
- mysql登錄報(bào)錯(cuò)提示:ERROR 1045 (28000)的解決方法
- MYSQL ERROR 1045 (28000): Access denied for user (using password: YES)問(wèn)題的解決