您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)mysql密碼錯(cuò)誤怎么辦,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
mysql登錄錯(cuò)誤:
mysqladmin: connect to server at 'localhost' failed error: 'Access denied for user 'root'@'localhost' (using password: YES)'
解決方法:
#> service mysqld stop #>mysqld_safe --skip-grant-tables & 輸入 mysql -uroot -p 回車進(jìn)入 >use mysql; > update user set password=PASSWORD("newpass")where user="root"; 更改密碼為 newpassord > flush privileges; 更新權(quán)限 > quit 退出 service mysqld restart mysql -uroot -p新密碼進(jìn)入
二,忘記本地root的登錄密碼
解決過程:
1、編輯/etc/my.cnf
在[mysqld] 配置部分添加一行
skip-grant-tables
2、保存后重啟mysql
[root@localhost etc]# service mysql restart Shutting down MySQL. [ OK ] Starting MySQL. [ OK ]
3、登錄數(shù)據(jù)庫重新設(shè)置root密碼
[root@localhost ~]# mysql -u root -p mysql Enter password:
直接回車進(jìn)入。
關(guān)于mysql密碼錯(cuò)誤怎么辦就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。