Eyekneemm opened a new issue #2053: URL: https://github.com/apache/servicecomb-java-chassis/issues/2053
A开启TLS,rest监听的地址:rest://xx.xx.xx.xx:28443?sslEnabled=true,模式:rest on vertx; B未开启TLS,rest监听地址:rest://xx.xx.xx.xx:28080?urlPrefix=xxxx,模式rest on servlet; 两端的ssl配置: ``` ssl.protocols=TLSv1.2 ssl.authPeer=false ssl.ciphers=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 ssl.trustStore=xxx.keystore ssl.trustStoreType=JKS ssl.keyStore=xxxx.keystore ssl.keyStoreType=JKS ssl.sslCustomClass=com.demo.SslCustom ``` 现象:A调用B正常,B调用A报错:connection timed out 当A注册时启用后TLS分两种情况: 1. 在IDEA中通过tomcat直接部署war包,互相调用成功 2. 将war包上传到linux 集成环境,B调用A报connection timed out 不启用TLS时,集成环境亦可用 ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
