解决mysql安装后无法连接问题

目录

1.Can't connect to MySQL server on xxx (10061)

2.Access denied for user 'ODBC'@'localhost'


1.Can't connect to MySQL server on xxx (10061)

参考https://jingyan.baidu.com/article/a681b0de5ac1dc3b167d.html

安装mysql服务:mysqld -install

重新启动服务:net start mysql

2.Access denied for user 'ODBC'@'localhost'

这个有可能是密码错误,root默认无密码

尝试使用以下选项运行 mysql 命令:
c: >mysql-u root

 

这将在连接时指定 "root" mysql 用户。

 

因为您没有指定任何用户, 所以它默认为 "匿名" (未命名) 用户。在 windows 上, 用户名设置为 "odbc"。

进入后最好设置密码:set password for root@localhost = password('123');

 

 

 

你可能感兴趣的:(J2EE等前后端分离)