重新部署节点时出现错误

问题描述 投票:0回答:1

我仍然在使用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]
corda
1个回答
0
投票

这看起来像是Artemis未能连接到节点,这意味着节点无法启动。

你应该看看日志,如果有任何其他以前的Corda节点启动,占用了节点。

如果有任何遗留的 Corda 节点没有被杀死,请尝试以下方法 ps -ef |grep java 来查看是否有其他java还活着。特别是看端口号,检查它们是否重叠了

© www.soinside.com 2019 - 2024. All rights reserved.