Hyperledger fabric running test network
1, Prepare
linux environment or install a virtual machine in windows.
The following are the tests under Linux environment.
2, Prerequisites
Git ,cURL,Docker,Docker Compose
1. git installation
sudo yum install git
test
git --version
2,cURL
sudo yum install curl
3,Docker ,Docker Compose
Docker should be able to install official documents. I hav ...
Posted by mdojet on Sun, 06 Mar 2022 13:22:15 +0100
Familiar with fabric and check test network
First at ~ / go / SRC / GitHub Compile order and peer under COM / hyperledger / fabric
Compile Orderer
$ cd $GOPATH/src/github.com/hyperledger/fabric/
$ make orderer
After the command is executed, the terminal output is as follows:
Compile peer
$ make peer
After the command is executed, the terminal output is as follows:
Compile ...
Posted by g0liatH on Thu, 03 Mar 2022 11:36:49 +0100
Hyperledger learning: Super ledger chain code deployment and call (Part I: official example test)
Environmental inventory
Basic environment
Operating system: Ubuntu 21.04 amd64Golang : Version 1.16.5Docker : Version 20.10.7Docker Compose : Version 1.29.2Hyperledger Fabric : Github - hyperledger/fabric @v2.4.0
For basic environment installation, refer to the previous article: Hyperledger learning (I): basic environment installation a ...
Posted by karlovac on Thu, 20 Jan 2022 22:42:16 +0100
Fabric test network fabric samples
Fabric 2.2.0
Test the network using Fabirc
1. Environmental preparation
https://hyperledger-fabric.readthedocs.io/zh_CN/release-2.2/install.html
Install docker
curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
Install docker-compose
curl -L https://github.com/docker/compose/releases/download/1.27.2/docker-compose-`uname ...
Posted by debuitls on Mon, 13 Dec 2021 15:51:53 +0100
Centos7 installation of Hyperledge Fabric v2.3 test network in VMware
catalogue
Installation environment
0. Prerequisites:
1. Download Fabric (version 2.3.3)
two Installation example, binary and Docker image (see method 3 directly)
(1) Method 1 (unsuccessful): execute directly according to the official website
(2) Method 2 (unsuccessful): directly execute the bootstrap.sh script , Same error ...
Posted by nvee on Fri, 29 Oct 2021 01:19:11 +0200
Combing the contents of network.sh startup script under hyperledger fabric sample test network
First clarify the network steps of a single machine:
Generate organization
Generate certificates for your organization
Generate Genesis block
Generate channel
Generate node join channel
Set anchor node
Then find out what steps in the script are started through those instructions:
Let's first look at the startup parameters of a network
...
Posted by rincewind456 on Sun, 10 Oct 2021 11:55:20 +0200