mysql登录遇到ERROR 1045问题解决方法_MySQL
程序员文章站
2022-06-04 13:17:19
...
bitsCN.com
在Windows系统中,mysql登录的时候出现了这样的错误:ERROR 1045: Access denied for user: 'root@localhost' (Using password: YES)
从网上找了一些办法,终于得到了解决,现在记录一下具体的解决方法:
c:/>sc stop mysql
c:/>mysqld --defaults-file="C:/MySQL/MySQLServer6.0/my.ini" --console --skip-grant-tables
重新开一个cmd
c:/>mysql -uroot -p
enter password: mysql>UPDATE user SET Password=PASSWORD('newpassword') where USER='root';
mysql>FLUSH PRIVILEGES;
mysql>quit
bitsCN.com
从网上找了一些办法,终于得到了解决,现在记录一下具体的解决方法:
c:/>sc stop mysql
c:/>mysqld --defaults-file="C:/MySQL/MySQLServer6.0/my.ini" --console --skip-grant-tables
重新开一个cmd
c:/>mysql -uroot -p
enter password: mysql>UPDATE user SET Password=PASSWORD('newpassword') where USER='root';
mysql>FLUSH PRIVILEGES;
mysql>quit
bitsCN.com
上一篇: linux下编译ffmpeg
下一篇: 香蕉制作方法,香蕉有什么好吃的做法
推荐阅读
-
解决MySQL远程登录时出现ERROR 1130错误问题_MySQL
-
mysql处理添加外键时提示error 150 问题的解决方法_MySQL
-
解决mysql安装时出现error Nr.1045问题的方法
-
mysql 导出select语句结果到excel文件遇到问题及解决方法
-
mysql处理添加外键时提示error 150 问题的解决方法
-
mysql error:#1062 Duplicate entry ‘***′ for key 1问题解决方法
-
mysql 导出select语句结果到excel文件遇到问题及解决方法
-
mysql处理添加外键时提示error 150 问题的解决方法
-
mysql 登录时闪退的问题解决方法
-
mysql error:#1062 Duplicate entry ‘***′ for key 1问题解决方法