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

From wiki.samerhijazi.net
Jump to navigation Jump to search
(Infrastructure)
Line 1: Line 1:
 +
=Source=
 
* https://www.hyperledger.org/resources/training/hyperledger-fabric-certification
 
* https://www.hyperledger.org/resources/training/hyperledger-fabric-certification
 
* https://www.udemy.com/course/certified-hyperledger-fabric-developer-cbdh-practice-exams/
 
* https://www.udemy.com/course/certified-hyperledger-fabric-developer-cbdh-practice-exams/
 
* 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
 +
=Subjects=
 +
* CA-Server HW-Security
 +
* Gen: Channel
 +
* Gen: Blockchain
 +
* Gen: Chaincode
 +
* static leader election policy
 +
* TLS
 
=Infrastructure=
 
=Infrastructure=
 
<pre class="code">
 
<pre class="code">

Revision as of 12:32, 21 February 2020

Source

Subjects

  • CA-Server HW-Security
  • Gen: Channel
  • Gen: Blockchain
  • Gen: Chaincode
  • static leader election policy
  • TLS

Infrastructure

- vCPU: 2
- RAM: 7GB
- HDD: 30GB
- OS: Ubuntu 16.04
# -*- mode: ruby -*-
# vi: set ft=ruby :
ENV['VAGRANT_DEFAULT_PROVIDER'] = 'virtualbox'
ENV["LC_ALL"] = "en_US.UTF-8"

Vagrant.configure("2") do |config|
   config.vm.box = "ubuntu/xenial64"
   config.vm.hostname = "fabric"
   config.vm.network "public_network"
   config.vm.base_address = "192.168.178.201"
   config.vm.base_mac = "0800278A8081"
   config.vm.synced_folder ".", "/vagrant"

   config.disksize.size = '50GB'
# --------------------------------------------------------------------
   config.vm.provider "virtualbox" do |vb|
      vb.gui = false
          vb.name = "Fabric"
          vb.cpus = 2
          vb.memory = 4096
   end
# --------------------------------------------------------------------
end
$ sudo apt install curl
$ sudo apt install git
$ sudo apt install python-minimal
$ sudo apt install docker-ce

Study-Plan

- peer
- Genesis Block
- MSP