共计 1042 个字符,预计需要花费 3 分钟才能阅读完成。
行业资讯
数据库
MySQL 数据库
Linux 中连接 mysql 报错:Access denied for user‘root’@‘localhost’(using password: YES) 怎么办
Linux 中连接 mysql 报错:Access denied for user‘root’@‘localhost’(using password: YES) 怎么办
发布时间:2021-06-11 12:41:28
来源:丸趣 TV
阅读:1008
作者:小新
栏目:MySQL 数据库
自动写代码机器人,免费开通
这篇文章主要为大家展示了“Linux 中连接 mysql 报错:Access denied for user‘root’@‘localhost’(using password: YES) 怎么办”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让丸趣 TV 小编带领大家一起研究并学习一下“Linux 中连接 mysql 报错:Access denied for user‘root’@‘localhost’(using password: YES) 怎么办”这篇文章吧。
前言
最近在 linux 连接 mysql /usr/local/mysql/bin/mysql -uroot -p
输入密码出现 Access denied for user root @ localhost (using password: YES) 错误。下面话不多说了,来一起看看详细的解决方法吧
解决办法:
1. 先停止 mysql 服务
service mysqld stop
2. 进入 mysql 安装目录 bin/ 使用 safe 模式,进行重启:
./mysqld_safe --skip-grant-tables
3. 使用 root 账户,无密码登录,修改 root 用户密码
mysql -u root
use mysql
update user set password=PASSWORD(你的密码) where User = root
4. 重启 mysql,正常登录
service mysqld restart 重启
/usr/local/mysql/bin/mysql -uroot -p 然后输入刚才重置的密码
以上是“Linux 中连接 mysql 报错:Access denied for user‘root’@‘localhost’(using password: YES) 怎么办”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注丸趣 TV 行业资讯频道!
向 AI 问一下细节