我仍然在使用Corda 1.0版本。当我尝试使用现有数据重新部署节点时,在启动时出现以下错误,但能够访问节点。如果我清除数据并重新部署节点,我就不会遇到这些错误消息。
Logs can be found in :
C:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\kotlin-
source\build\nodes\xxxxxxxx\logs
Database connection url is : jdbc:h2:tcp://xxxxxxxxx/node
E 18:38:46+0530 [main] core.client.createConnection - AMQ214016: Failed to
create netty connection
javax.net.ssl.SSLException: handshake timed out
at io.netty.handler.ssl.SslHandler.handshake(...)(Unknown Source) ~[netty
all-4.1.9.Final.jar:4.1.9.Final]
Incoming connection address : xxxxxxxxxxxx
Listening on port : 10014
RPC service listening on port : 10015
Loaded CorDapps : corda-finance-1.0.0, kotlin-
source-0.1, corda-core-1.0.0
Node for "xxxxxxxxxxx" started up and registered in 213.08 sec
Welcome to the Corda interactive shell.
Useful commands include 'help' to see what is available, and 'bye' to shut
down the node.
Wed May 23 18:39:20 IST 2018>>> E 18:39:24+0530 [Thread-6 (ActiveMQ-server-
org.apache.activemq.artemis.core.server.impl.ActiveMQServerImp
l$3@4a532271)] core.client.createConnection - AMQ214016: Failed to create
netty connection
javax.net.ssl.SSLException: handshake timed out
at io.netty.handler.ssl.SslHandler.handshake(...)(Unknown Source) ~[netty-
all-4.1.9.Final.jar:4.1.9.Final]发布于 2020-06-02 21:29:42
这看起来像是Artemis无法连接到节点,这意味着节点无法启动。
您应该查看日志,看看是否有任何其他以前启动的Corda节点占用了该节点。
如果有任何遗留的Corda节点尚未终止,请尝试使用ps -ef |grep java查看是否有其他java仍在运行。特别是查找端口号,并检查它们是否重叠
https://stackoverflow.com/questions/50502498
复制相似问题