通过OGG BigData将PostgreSQL同步到Datahub报错:org.apache.kafka.common.errors.SslAuthenticationException : SSL handshake failed
问题描述:
启动目标端的replicat进程时报错:org.apache.kafka.common.errors.SslAuthenticationException : SSL handshake failed
解决办法:
1、通过集群运维,在配置中获取根证书,粘贴到文件中并将文件命名为:ca-cert。
2、在ECS服务器本机执行命令生成本地的证书
keytool -keystore server.truststore.jks -alias CARoot -import -file ca-cert -storepass 123456
是否信任此证书 填写 y。
3、需要在custom_kafka_producer.properties配置中新增两行内容:
ssl.truststore.location=/data/ogg_bigdata/server.truststore.jks (证书保存的目录)
ssl.truststore.password=123456 (生成证书时传入的密码)
本文来自博客园,作者:业余砖家,转载请注明原文链接:https://www.cnblogs.com/yeyuzhuanjia/articles/17672735.html