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下装了mysql5.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了试验一下!
需要整理一下mysql的主从备份的实现方案;
posted on 2009-05-23 22:41
小果子 阅读(2732)
评论(0) 编辑 收藏 引用 所属分类:
SQL