fabric-samples
fabric-samples copied to clipboard
Error: proposal failed (err: bad proposal response 500: cannot create ledger from genesis block: ledger [mychannel] already exists with state [ACTIVE]) After 5 attempts, peer0.1 has failed to join channel 'mychannel'
Error: proposal failed (err: bad proposal response 500: cannot create ledger from genesis block: ledger [mychannel] already exists with state [ACTIVE]) After 5 attempts, peer0.1 has failed to join channel 'mychannel'
@Piyushmethi09 Did you find a fix for this issue? I have the same.
I hit this error recently and the problem - for me at least - seemed to be Docker volumes hanging around from a previous time the Fabric network was created. This was resolved by running:
-
./network.sh down
-
docker system prune --volumes
I have the same error as you, but only while trying to add a second peer to the channel :
I don't understand why it attempts to recreate a channel, when I only want to add another peer to it.
If someone has a clue...
I have the same error as you, but only while trying to add a second peer to the channel :
I don't understand why it attempts to recreate a channel, when I only want to add another peer to it.
If someone has a clue...
Hello, have you solved this problem? I'm running into this issue now as well
I hit this error recently and the problem - for me at least - seemed to be Docker volumes hanging around from a previous time the Fabric network was created. This was resolved by running:
./network.sh down
docker system prune --volumes
this solved the issue for me! thank youu!