Tools, FAQ, Tutorials:
Download Hyperledger Fabric Source Code
How to download Hyperledger Fabric source code on Ubuntu?
✍: FYIcenter.com
You can follow this tutorial to download Hyperledger Fabric source code on Ubuntu:
1. Set up Go home path. And add the command to your shell initial script, ~/.bashrc, so you don't have to do it again in future logins.
$ export GOPATH=$HOME/go
2. Prepare the Fabric source code directory:
$ mkdir -p $GOPATH/src/github.com/hyperledger
3. Register a username, like "fyicenter", at identity.linuxfoundation.org. Your username becomes the LFID (Linux Foundation ID).
4. Generate a private-public key pair for SSH connection with gerrit.hyperledger.org.
$ ssh-keygen -t rsa -C "joe@fyicenter.com" Enter file in which to save the key (/home/fyicenter/.ssh/id_rsa): Enter passphrase (empty for no passphrase): *** Enter same passphrase again: *** Your identification has been saved in /home/fyicenter/.ssh/id_rsa. Your public key has been saved in /home/fyicenter/.ssh/id_rsa.pub. The key fingerprint is: SHA256:BCcY7U6P/zbg/... joe@fyicenter.com The key's randomart image is: +---[RSA 2048]----+ | .+o ..+B*.+. | ... | ..+o..++ | +----[SHA256]-----+
5. Upload the public key to your gerrit.hyperledger.org account, which shares the same LFID account.
6. Download (clone) the Fabric source code. Remember to replace "LFID" with your LFID (Linux Foundation ID).
$ cd $GOPATH/src/github.com/hyperledger # git clone ssh://LFID@gerrit.hyperledger.org:29418/fabric $ git clone ssh://fyicenter@gerrit.hyperledger.org:29418/fabric Enter passphrase for key '/home/fyicenter/.ssh/id_rsa': *** # scp -p -P 29418 LFID@gerrit.hyperledger.org:hooks/commit-msg fabric/.git/hooks/ $ scp -p -P 29418 fyicenter@gerrit.hyperledger.org:hooks/commit-msg fabric/.git/hooks/ Enter passphrase for key '/home/fyicenter/.ssh/id_rsa': *** $ ls -l drwxrwxr-x 26 fyicenter 4096 Apr 1 13:09 fabric
⇒ Build Hyperledger Fabric from Source Code
⇐ Build and Run "Hello" Go Program
2020-05-15, 1605🔥, 0💬
Popular Posts:
Can You Add Values to an Array without Keys in PHP? Can You Add Values to an Array with a Key? The a...
How to view API details on the Publisher Dashboard of an Azure API Management Service? You can follo...
How to read Atom validation errors at w3.org? If your Atom feed has errors, the Atom validator at w3...
How to add images to my EPUB books Images can be added into book content using the XHTML "img" eleme...
What is EPUB 3.0 Metadata "dc:publisher" and "dc:rights" elements? EPUB 3.0 Metadata "dc:publisher" ...