create BcosSDK failed, error info: init channel network error: Try init the sslContext failed.
Try init the sslContext failed.)
在本机搭建了Fisco Bcos环境,使用的非国密版,Java环境连接的时候报如下错误
Caused by: org.fisco.bcos.sdk.BcosSDKException: create BcosSDK failed, error info: init channel network error:
* Try init the sslContext failed.
* If your blockchain channel config is NON-SM, please provide the NON-SM certificates: CryptoMaterialConfig{certPath='conf', caCertPath='conf/ca.crt', sdkCertPath='conf/sdk.crt', sdkPrivateKeyPath='conf/sdk.key', enSSLCertPath='null', enSSLPrivateKeyPath='null', sslCryptoType=0}.
* If your blockchain channel config is SM, please provide the missing certificates: Please make sure conf/gm/gmsdk.crt conf/gm/gmsdk.key exist!
造成这个问题的原因有很多,可以从以下几个角度去排查:
1、确认openssl相关环境是否安装
2、确认项目证书文件配置正确,检查证书文件所在目录是否正确的被加载
3、也有可能是依赖版本的问题,我出现此错误的原因是依赖版本冲突导致的,当前pom引用的netty依赖版本与bcos-java-sdk中引用的依赖版本不一致导致的。