MySQL出现 Access denied for user ‘root’@'localhost’ using password: YES错误该怎么办

53次阅读
没有评论

共计 822 个字符,预计需要花费 3 分钟才能阅读完成。

行业资讯    
数据库    
MySQL 出现 Access denied for user‘root’@ localhost’using password: YES 错误该怎么办

MySQL 出现 Access denied for user‘root’@ localhost’using password: YES 错误该怎么办
发布时间:2021-12-01 09:28:35
来源:丸趣 TV
阅读:158
作者:柒染
栏目:数据库

MySQL 出现 Access denied for user‘root’@ localhost’using password: YES 错误该怎么办,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面丸趣 TV 小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。

登录某台服务器的 mysql 时候总报错:

mysql2/client.rb:58:in `connect : Access denied for user root @ localhost (using password: YES) (Mysql2::Error)

解决方法:

# /etc/init.d/mysqld stop 
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking   
# mysql -u root mysql 
mysql  UPDATE user SET Password=PASSWORD(’newpassword’) where USER=’root’; 
mysql  FLUSH PRIVILEGES; 
mysql  quit 
# /etc/init.d/mysqld restart 
# mysql -uroot -p 
Enter password:  输入新设的密码 newpassword  
mysql

看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注丸趣 TV 行业资讯频道,感谢您对丸趣 TV 的支持。

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-07-18发表,共计822字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)