Apache zookeeper 连接到Zookeeper的网桥启动错误

Apache zookeeper 连接到Zookeeper的网桥启动错误,apache-zookeeper,corda,Apache Zookeeper,Corda,根据中所述的步骤,尝试使用Zookeeper设置桥接组件时出现以下错误 Mybridge.conf: bridgeMode = BridgeInner outboundConfig { artemisBrokerAddress = "10.102.32.97:10010" alternateArtemisBrokerAddresses = [ "10.102.32.98:10010" ] } bridgeInnerConfig { floatAddresses = ["1

根据中所述的步骤,尝试使用Zookeeper设置桥接组件时出现以下错误

My
bridge.conf

bridgeMode = BridgeInner
outboundConfig {
    artemisBrokerAddress = "10.102.32.97:10010"
    alternateArtemisBrokerAddresses = [ "10.102.32.98:10010" ]
}
bridgeInnerConfig {
    floatAddresses = ["10.102.32.103:12005", "10.102.32.105:12005"]
    expectedCertificateSubject = "CN=Float Local,O=Local Only,L=London,C=GB"
    customSSLConfiguration {
           keyStorePassword = "bridgepass"
           trustStorePassword = "trustpass"
           sslKeystore = "./bridgecerts/bridge.jks"
           trustStoreFile = "./bridgecerts/trust.jks"
           crlCheckSoftFail = true
    }
}
haConfig {
    haConnectionString = "zk://10.102.32.104:2181,zk://10.102.32.107:2181,zk://10.102.32.108:2181"
}
networkParametersPath = ./network-parameters

有什么想法吗?

这个错误是无害的。这表明停靠的Zookeeper具有错误的IP地址,因此当Apache Curator被发送动态拓扑时,一些检查失败。它不会使静态配置无效,并且一切正常


请注意,从Corda Enterprise 3.2开始,您必须使用与Apache Curator库兼容的Zookeeper版本,即3.5.3-beta版,而不是最新版本。

谢谢Joe。事实上,它正在发挥作用。只是一个观察,动物园管理员没有被拘留。我将检查IP配置。
bridgeMode = BridgeInner
outboundConfig {
    artemisBrokerAddress = "10.102.32.97:10010"
    alternateArtemisBrokerAddresses = [ "10.102.32.98:10010" ]
}
bridgeInnerConfig {
    floatAddresses = ["10.102.32.103:12005", "10.102.32.105:12005"]
    expectedCertificateSubject = "CN=Float Local,O=Local Only,L=London,C=GB"
    customSSLConfiguration {
           keyStorePassword = "bridgepass"
           trustStorePassword = "trustpass"
           sslKeystore = "./bridgecerts/bridge.jks"
           trustStoreFile = "./bridgecerts/trust.jks"
           crlCheckSoftFail = true
    }
}
haConfig {
    haConnectionString = "zk://10.102.32.104:2181,zk://10.102.32.107:2181,zk://10.102.32.108:2181"
}
networkParametersPath = ./network-parameters