MySQL: linux mysql access denied for user ‘root’@’localhost'(using password:YES)
生活随笔
收集整理的這篇文章主要介紹了
MySQL: linux mysql access denied for user ‘root’@’localhost'(using password:YES)
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
linux安裝完mysql后,使用程序連接報(bào)以上錯(cuò)誤
Access denied for user 'root'@'localhost'?(using password:YES)
解決方法,重新設(shè)置密碼,步驟如下
1.先停掉原來的服務(wù)
service mysqld stop 或者 /etc/init.d/mysql stop2.使用安全模式登陸,跳過密碼驗(yàn)證
nohup mysqld_safe --user=mysql --skip-grant-tables --skip-networking &3.登陸
mysql -uroot mysql4.修改密碼
mysql > update user set authentication_string = password('123456') where user = 'root' and Host = 'localhost';5.刷新權(quán)限
mysql > flush privileges;6.重新使用正常模式登陸
#mysql -uroot -p #enter password : 123456可以正常登陸。
7.執(zhí)行其他命令:show databases; 如果提示如下錯(cuò)誤
You must reset your password using ALTER USER statement before executing this statement.8.重新將密碼設(shè)置一遍即可
mysql > set password = password ('123456');9.配置完成。
?
如果出現(xiàn) Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (111)
若該路徑下存在.sock文件,開啟一下MySQL服務(wù)即可,/etc/init.d/mysql start
總結(jié)
以上是生活随笔為你收集整理的MySQL: linux mysql access denied for user ‘root’@’localhost'(using password:YES)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C++:左值和右值
- 下一篇: Mybatis:基于注解形式,传入Lis