mysql 1045错误

Access denied for user ‘root‘@‘localhost‘ (using password:YES)

首先停用mysql服务

Service mysql stop

然后用此命令跳过网络授权表 mysqld_safe --user=mysql --skip-grant-tables --skip-networking & 

登录mysql

Mysql –uroot –p


Mysql 密码修改

mysql>use mysql;

      mysql>update user set password=password(‘new_password‘) where user=‘用户名‘;

      mysql>flush privileges;


本文出自 “网络工程专题” 博客,请务必保留此出处http://houzhibo.blog.51cto.com/3103241/1597817

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。