绑定完请刷新页面
取消
刷新

分享好友

×
取消 复制
Kettle连接MariaDB数据库
2022-03-03 14:43:19

踩坑前奏

连接MariarDB

image.png

没驱动

Driver class 'org.mariadb.jdbc.Driver' could not be found, make sure the 'MariaDB' driver (jar file) is installed.
org.mariadb.jdbc.Driver
复制代码

image.png

正式开始

查看数据库版本

image.png ## 下载连接 参考文章 没1个版本号一样的,随便选1个,应该没问题 image.png

Connection failed. Verify all connection parameters and confirm that the appropriate driver is installed.
Could not connect to HostAddress{host='192.168.1.18', port=3306, type='master'}. Host '10.0.0.2' is not allowed to connect to this MariaDB server
复制代码

image.png

改表法www.pianshen.com/article/196…还有授权法

Connection failed. Verify all connection parameters and confirm that the appropriate driver is installed.
Could not connect to HostAddress{host='192.168.*.*', port=3306, type='master'}. Host '10.0.*.*' is not allowed to connect to this MariaDB server
复制代码

image.png

重启数据库

禁用再启用一下,相当于重启 image.png

yaolunhui

MariaDB创建远程用户访问,并设置只允许访问一个数据库.

-- 创建用户 create user 'user'@'%'  identified by 'mm123456';

--示例1,允许所有从任意地址登录的用户: create user 'ActionNet'@'%' identified by 'zxc123';

--示例2,允许从192.168.199.100登录的用户: create user 'ActionNet'@'192.168.199.100' identified by 'zxc123'; grant all privileges on road.* to 'user'@'%';

-- 示例:授予任意地址登录ActionNet用户所有数据库所有权限 GRANT ALL ON *.* TO 'ActionNet'@'%';

flush privileges;

image.png

总算连上了 image.png

总结

java连数据库的jar包是对应数据库研发方提供的,所以应到对应数据库官网下载

来源 https://juejin.cn/post/7043427931414069285

分享好友

分享这个小栈给你的朋友们,一起进步吧。

MariaDB
创建时间:2022-03-01 11:18:54
MariaDB
展开
订阅须知

• 所有用户可根据关注领域订阅专区或所有专区

• 付费订阅:虚拟交易,一经交易不退款;若特殊情况,可3日内客服咨询

• 专区发布评论属默认订阅所评论专区(除付费小栈外)

技术专家

查看更多
  • itt0918
    专家
戳我,来吐槽~