DBeaver连接数据库拒绝连接等问题
dbeaver
DBeaver 是一个通用的数据库管理工具,支持跨平台使用。* 支持多种数据库类型,如 MySQL、PostgreSQL、MongoDB 等;提供 SQL 编辑、查询、调试等功能;支持数据迁移和比较。* 特点:免费开源;界面友好;功能丰富。
项目地址:https://gitcode.com/gh_mirrors/db/dbeaver
免费下载资源
·
1.防火墙关闭问题 防火墙关闭是不可以的
2.远程登录权限 查看用户的权限是本地还是远程
3.3306端口问题 3306端口是否占用还是没有开启
4.数据库密码一定正确
Connection refused: connect
如果出现此状况需要查看数据库防火墙是否开启,如果开启请防火墙开放3306端口
开启防火墙
systemctl start firewalld
查看防火墙状态
systemctl status firewalld
如果防火墙没有问题,请查看数据库是否开启远程登录
mysql -u root -p1234567 //root是数据库名称 123456是密码以上替换成你的数据库名和密码
use mysql;
select user,host from mysql.user;
修改为允许所有root用户远程访问
首先刷新一下 这句表示从mysql数据库的grant表中重新加载权限数据
flush privileges;
这里的123456为你给新增权限用户设置的密码,%代表所有主机,也可以具体到你的主机ip地址(将’%‘改为’你的主机IP’)
grant all privileges on *.* to root@'%'identified by '123456';
这样修改后就可以解决啦、
如果有什么疑问欢迎评论区留言!
GitHub 加速计划 / db / dbeaver
22
1
下载
DBeaver 是一个通用的数据库管理工具,支持跨平台使用。* 支持多种数据库类型,如 MySQL、PostgreSQL、MongoDB 等;提供 SQL 编辑、查询、调试等功能;支持数据迁移和比较。* 特点:免费开源;界面友好;功能丰富。
最近提交(Master分支:4 个月前 )
5c0cd0c5 - 3 天前
d6580fcd
* dbeaver/pro#3911 AI and SQL control commands
* dbeaver/pro#3911 AI and SQL control commands
* dbeaver/pro#3741 System agent service
* dbeaver/pro#3911 AI and SQL control commands
* dbeaver/pro#3911 AI and SQL control commands
* dbeaver/pro#3911 AI and SQL control commands
* dbeaver/pro#3911 SQL output formatting
* dbeaver/pro#3911 AI error messages
* dbeaver/pro#3911 AI command fixes
* dbeaver/pro#3911 Support custom context
* dbeaver/pro#3911 Disable datasource check in headless products
---------
Co-authored-by: kseniaguzeeva <112612526+kseniaguzeeva@users.noreply.github.com> 3 天前
更多推荐
已为社区贡献2条内容
所有评论(0)