无法加入jetson nano HLF2.3频道



我想在我的笔记本电脑上设置Jetson Nano和VM的网络。

我的fabric版本是2.3.0。

当加入通道时,我有两个错误

Error: error getting endorser client for channel: endorser client failed to connect to
localhost:9051: failed to create new connection: connection error: desc = "transport: error
while dialing: dial tcp 127.0.0.1:9051: connect: connection refused"

和10051端口相同。

然后我无法部署具有相同错误的链码和来自Org2MSP (Nano)的错误批准

我遵循这个教程,但更新的图像和二进制文件(和重建手臂二进制文件为Nano):Hyperledger Fabric 2.0 on多主机

有人能帮我解决这个问题吗?谢谢你。

您正在运行对等连接,因此出现以上错误。命令从PC-1和org2的对等体运行在PC-2上,您已经导出了CORE_PEER_ADDRESS的环境变量localhost: 9051 .

最好运行crate和join channel命令formcli container.

,设置CORE_PEER_ADDRESScontainer_name:端口代替localhost:port

例如,如果您使用连接命令为org1的对等0,则设置CORE_PEER_ADDRESS如下

export CORE_PEER_ADDRESS=peer0.org1.example.com:7051

但在此之前,请确保所有容器都通过docker swarm网络连接。

相关内容

  • 没有找到相关文章

最新更新