1. 程式人生 > >hyperledger中基本網路搭建示例

hyperledger中基本網路搭建示例

組織相關資訊
	排序節點組織名:OrgOrder 
	排序節點組織ID:OrgOrderMSP
	排序節點根域名:wilsoner.com
	排序節點二級域名: orderer.wilsoner.com    
       組織名字,組織ID,組織MSP
       OrgOrder   orderer.wilsoner.com
       
       peer節點,組織個數2個,分別為go和cpp,每個組織分別有兩個peer節點,使用者個數為3
       		go組織
       		     go節點組織名:OrgGo
		    	     go節點組織ID:OrgGoMSP
		   	     go節點根域名:wilsoner.com
		             go節點二級域名: orggo.wilsoner.com
		             go節點的錨節點:peer0.orggo.wilsoner.com    
       		    組織名字,組織ID,組織MSP
       		    OrgOrder   orderer.wilsoner.com

	        cpp組織
       		     cpp節點組織名:OrgCpp
		    	     cpp節點組織ID:OrgCppMSP
		   	     cpp節點根域名:wilsoner.com
		             cpp節點二級域名: orgcpp.wilsoner.com
		             cpp節點的錨節點:peer0.orgcpp.wilsoner.com    
       		    組織名字,組織ID,組織MSP
       		    OrgOrder   orderer.wilsoner.com
       組織名字,組織ID,組織MSP,錨節點
   排序節點屬性
        共識機制
        區塊生成時機
    profiles:
       創始塊資訊
       通道資訊
       MyGenesis
       MyChannel

confixtxgen -profile MyGenesis -outputBlock genesis.block -channelID testchannel
confixtxgen -profile MyChannel -outputCreateChannelTx channel.tx -channelID testchannel
confixtxgen -profile MyChannel -outputAnchorPeersUpdate goAnchorPeer.tx -channelID testchannel -asOrg OrgGoMSP
confixtxgen -profile MyChannel -outputAnchorPeersUpdate cppAnchorPeer.tx -channelID testchannel -asOrg OrgCppMSP

在這裡插入圖片描述

docker-compose down -v
-v表示刪除掛載卷