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, 1475🔥, 0💬
Popular Posts:
What are "*..." and "**..." Wildcard Parameters in Function Definitions? If you want to define a fun...
What Is session_register() in PHP? session_register() is old function that registers global variable...
How to add request URL Template Parameters to my Azure API operation 2017 version to make it more us...
Where to find tutorials on Python programming language? I want to learn Python. Here is a large coll...
Where to get a real Atom XML example? You can follow this tutorial to get a real Atom XML example: 1...