Tools, FAQ, Tutorials:
"byfn.sh up" Error - Container Name in Use
Why am I getting the "Cannot create container for service peer0.org1.example.com: b'Conflict." error when running "byfn.sh up" to start up the BYFN Network?
✍: FYIcenter.com
You are getting "Cannot create container for service
peer0.org1.example.com: b'Conflict." error when
running the "byfn.sh up" command,
because there container name "peer0.org1.example.com" already exists
on the Docker Engine.
This error condition happens frequently on your local test environment, because many test networks are using the same container name "peer0.org1.example.com".
To resolve the issue, you can stop and remove the offending container:
$ docker container ls -a | grep peer0 ... hyperledger/fabric-peer:1.4 "peer node start" peer0.org1.example.com $ docker container stop "peer0.org1.example.com" peer0.org1.example.com $ docker container rm "peer0.org1.example.com" peer0.org1.example.com
Repeat the same steps to remove other containers.
Â
⇒ BYFN Containers Running on Docker
⇠"byfn.sh down" - Shut Down BYFN Network
⇑ Hyperledger Fabric Sample Networks
⇑⇑ Hyperledger Tutorials
2020-05-05, 1024👍, 0💬
Popular Posts:
How to login to the Developer Portal internally by you as the publisher? Normally, the Developer Por...
Where to find tutorials on EPUB file format? I want to know how to create EPUB books. Here is a larg...
How to use the urllib.request.Request object to build more complex HTTP request? The urllib.request....
How to login to Azure API Management Publisher Dashboard? If you have given access permission to an ...
How to use urllib.parse.urlencode() function to encode HTTP POST data? My form data has special char...