Difference between revisions of "IT-SDK-Hyperledger-Fabric-Admin"

From wiki.samerhijazi.net
Jump to navigation Jump to search
(Study-Plan)
Line 3: Line 3:
 
* https://www.hyperledger.org/resources/tutorials
 
* https://www.hyperledger.org/resources/tutorials
 
* https://hyperledger-fabric.readthedocs.io/en/latest/getting_started.html
 
* https://hyperledger-fabric.readthedocs.io/en/latest/getting_started.html
 +
=Infrastructure=
 +
<pre class="code">
 +
- vCPU: 2
 +
- RAM: 7GB
 +
- HDD: 30GB
 +
- OS: Ubuntu 16.04
 +
</pre>
 +
<pre class="code">
 +
$ sudo apt install curl
 +
$ sudo apt install git
 +
$ sudo apt install python-minimal
 +
$ sudo apt install docker-ce
 +
</pre>
 +
 
=Study-Plan=
 
=Study-Plan=
 
<pre class="code">
 
<pre class="code">
sudo apt update
+
 
sudo apt -y upgrade
+
</pre>
sudo apt install curl
 
sudo apt install git
 
sudo apt install -y python-minimal
 
sudo apt install apt-transport-https ca-certificates gnpg-agent software-properties-common
 
curl -fsSL ​https://download.docker.com/linux/ubuntu/gpg​ | sudo apt-key add -
 
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu​ $(lsb_release -cs) stable"
 
sudo apt update
 
sudo apt -y install docker-ce
 
</pre>
 

Revision as of 16:10, 17 January 2020

Infrastructure

- vCPU: 2
- RAM: 7GB
- HDD: 30GB
- OS: Ubuntu 16.04
$ sudo apt install curl
$ sudo apt install git
$ sudo apt install python-minimal
$ sudo apt install docker-ce

Study-Plan