Skip to content

ahmed82/hyperledger-fabric-Notes

Repository files navigation

hyperledger-fabric-Notes

TODO: Write-ahead logging

make basic-checks integration-test-prereqs
  1. Build Fabric Binaries and Docker Images
cd fabric
make clean
make configtxgen configtxlator cryptogen orderer peer docker

Crypto

openssl x509 -in ks.file -text -noout
openssl pkcs12 -info -in sk.keystore
keytool -v -list -keystore sk.keystore
openssl x509 -in cert.pem -text
openssl x509 -in cert.pem -text -noout
keytool -printcert -file certificate.pem
keytool -printcert -file cert.pem

Make

choco install make
choco install mingw -y
chocolatey install jq

clone the Fabric repo, in the main folder where the makefile file ,example type:

make orderer

image

Hedera Consensus Service Fabric

Create a hyperledger directory and navigate into that directory

mkdir -p $GOPATH/src/github.com/hyperledger && cd $GOPATH/src/github.com/hyperledger
git clone https://github.com/hyperledger-labs/pluggable-hcs fabric
cd fabric
make clean
make configtxgen configtxlator cryptogen orderer peer docker