I am trying to set up a hyperledger fabric on a VM manually. I have generated all the artifacts and configured the orderer.yaml
and core.yaml
. I ha
I also faced the same problem and in my case, the issue was that I made some changes to the local directory files and apparently those changes were not successfully reflected while mounting those files back into the docker containers. What fixed the problem for me was
docker volume rm $(docker volume ls)
I restarted the network again and didn't see any more certificate errors. Worth a try.