【背景描述】
我的zk,kafka和Maxwell都正常启动了
此时我需要用Maxwell将MySQL的一张表user_info将其全量同步到kafka当中时发生报错,命令如下:
[atguigu@hadoop102 datas]$ /opt/module/maxwell/bin/maxwell-bootstrap --database gmall --table user_info --config /opt/module/maxwell/config.properties
【报错截图】
【原因】
说是证书时间不通过,意思就是我启动Maxwell采集的时间不能比这个证书的时间早
【解决】
我这个办法比较粗暴,直接把当前时间改到它后面(这不是最终的解法,问题并没有解决,只是能把这个bug绕过去而已)
[atguigu@hadoop102 applog]$ sudo date -s '2024-04-18 19:00:00'
再跑:/opt/module/maxwell/bin/maxwell-bootstrap --database gmall --table user_info --config /opt/module/maxwell/config.properties
数据就被采集的kafka了,但这样有问题,因为kafka上的时间是我改后的时间(不对),所以问题并没有完全解决,但证书我网上找了半天,没看太明白,期待有大神求助~