MySQL连接问题解决

Posted Session__csdn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL连接问题解决相关的知识,希望对你有一定的参考价值。

win7 mysql5.6.17
提示:1045 access denied for user 'root'@'localhost' using password yes


从网上找到的解决方法,以此博客做笔记记录。


Windows:

1. 管理员登陆系统,停止MySQL服务或者结束mysqld-nt进程
2. 进入命令行,来到mysql的安装目录.假设安装目录为 d:\\mysql\\ , CMD进入命令行
3. 运行 d:\\mysql\\bin\\mysqld-nt --skip-grant-tables 启动mysql,关闭权限的检查
4. 运行 d:\\mysql\\bin\\mysqladmin -u root flush-privileges password "newpassword" 重设root密码
5. 重新启动mysql服务, net stop mysql 接着net start mysql,然后mysql -u root -p 输入密码即可登录

这个验证成功,mysql运行重新正常


Linux系统
方法一: 
# /etc/init.d/mysql 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/mysql restart 
# mysql -uroot -p 
Enter password: <输入新设的密码newpassword> 
mysql> 
方法二: 
直接使用/etc/mysql/debian.cnf文件中[client]节提供的用户名和密码: 
# mysql -udebian-sys-maint -p 
Enter password: <输入[client]节的密码> 
mysql> UPDATE user SET Password=PASSWORD(’newpassword’) where USER=’root’; 
mysql> FLUSH PRIVILEGES; 
mysql> quit 
# mysql -uroot -p 
Enter password: <输入新设的密码newpassword> 
mysql>

以上是关于MySQL连接问题解决的主要内容,如果未能解决你的问题,请参考以下文章

解决刚刚安装完mysql 远程连接不上问题

求解决java中用jdbc方式连接mysql数据库的问题,错误异常如下:(解决后再加分)

解决远程连接mysql很慢的方法

解决远程连接mysql很慢的方法

linux 下解决mysql root 权限无法远程连接问题

[转]解决远程连接mysql很慢的方法