mysql Error 1045(28000) Access Denied for user 'root'@'localhost' (Using password:NO)

mysql  error  1045
windows系统下mysql出现Error  1045(28000)  Access  Denied  for  user  'root'@'localhost'  (Using  password:NO) 错误解决方法
            在windows操作系统安装mysql数据库,碰到Error  1045(28000)  Access  Denied  for  user  'root'@'localhost'  (Using  password:NO)错误时,你需要重新设置密码。
            具体方法是:
            1.先在安装目录找到my.ini 配置文件,打开配置文件,找到[mysqld]一行,在下面添加skip-grant-tables 后保存该文件,重新启mysql动服务;
windows7下装了mysq l5.1,error1045,删除实例后服务就启动不了,试了很多方法都不能解决,,最后重装了个6.0的beta,出现刚装5.1时的初始错误error  1045最终错误解决:(感谢作者)
1、mysql  -u  root
2、use  mysql
3、update  user  set  password=old_password('scf')  where  user='root'  and  host='localhost'  ;
4、FLUSH  PRIVILEGES;

ok了试验一下!

装载自:http://blog.sina.com.cn/s/blog_6bce54010100zhnw.html

你可能感兴趣的:(mysql Error 1045(28000) Access Denied for user 'root'@'localhost' (Using password:NO))