Reputation: 11
I have already start a local Fabric network 2.2 by following the official guide (fabcar project).
This is the output of docker ps -a
:
docker ps
Now, I have these questions:
I have read the doc in Fabric Website, that doesn't really help.
Upvotes: -1
Views: 675
Reputation: 2200
Ledger data is under /var/hyperledger/production/ledgersData
inside your peer container. You might have /var/hyperledger/production
mapped to a volume to save your peer state. When using CouchDB to store world state, the world state is stored in the CouchDB container (under something like /opt/couchdb/data
, which might be mapped to a volume, too).
In my opinion, the easiest way is to deploy Hyperledger Explorer for your network: https://github.com/hyperledger/blockchain-explorer/blob/main/README.md.
Upvotes: 1