当前位置:网站首页>Fabric test example, encountered order exited (x) x seconds
Fabric test example, encountered order exited (x) x seconds
2022-04-22 08:46:00 【Firefly ignition】
problem
stay Fabric1.4 Execute commands with ./byfn.sh up test fabric-samples Errors may be reported during network
Error: failed to connect to orderer.example.com:7050:xxxxxx

Check docker ps -a
Find out orderer The container automatically exits .orderer Exited(x) x seconds

solve
Looked up a lot of articles , No solution , Finally, the installation process before the fine product found problem .
Make a list of other people's statements :
1. Maybe you haven't shut down the network before
perform ./byfn.sh down Turn off the network and try again
2. Delete docker
docker kill $(docker ps -a -q)
docker rm $(docker ps -qf status=exited) // Delete stopped containers
docker volume prune // Clear old volumes
docker network prune // Clean up network cache
Then restart the network
3. None of the previous methods can solve my problem , I also tried to delete the image and download other versions .
Finally, read the installation process carefully , Problems found : Be careful of yourself fabric-samples Whether the installation position of the is correct ,fabric-samples Contents and fabric Catalog level , It's all in hyperledger Under the table of contents .
Re execution **./byfn.sh up** There is no problem .
The reason should be that the paths in the configuration file are specified , If the path is wrong, all kinds of errors will be reported .
Fabric1.4 Refer to another blog post for installation :https://blog.csdn.net/weixin_44732379/article/details/108631041
版权声明
本文为[Firefly ignition]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204220747539583.html
边栏推荐
- golang 环境搭建
- "Unexpected" operation in SQL statement
- String replacement
- require-dev.mikey179/vfsStream is invalid, it should not contain uppercase characters. Please use m
- Client and server communication project 5: LS command in C language
- Fabric测试示例,遇到orderer Exited(x) x seconds
- Postgres + PostGIS + GeoServer offline path planning function (record)
- Redis is easy to use
- Cesium realizes the monomer of buildings (divided into buildings and layers)
- JS cross domain problem solving
猜你喜欢
随机推荐
Cesium collects terrain height and model height (asynchronous method, suitable for more data)
Dynamic memory management of C
Level 3: node quota and other commands
require-dev.mikey179/vfsStream is invalid, it should not contain uppercase characters. Please use m
PCIe learning - Introduction to PCIe bus architecture: transaction layer - data link layer - physical layer (8)
CPU内存访问空间
Level 2: create, list and delete child nodes
Disk management - raid creation
Matlab tip: to use 'xxx function', you must authorize, install and enable the following products: XXX toolbox
PCIe学习-PCIe总线体系结构入门:事务层-数据链路层-物理层(八)
Use of stream
RHEL7 逻辑卷管理-笔记
POI操作excel三剑客
PCIe学习-PCIe总线怎样做到在软件上兼容PCI总线(七)
redis 简单使用
C语言之scanf/sprintf、fscanf/fprintf、sscanf/sprintf、snprintf
Explain escape character
sql 中对varchar类型进行求和(sum)方法 (类型报错)
PCIe学习-PCIe总线的基本概念(六)
win系统pinpoint编译安装遇到的坑和大家分享







