我有两个同行和两个组织(ri,re)。当我尝试在资源管理器中显示同行时,它总是显示 1 个同行。它没有显示 2 个同行。请找到以下配置文件
{
"name": "eni-network",
"version": "1.0",
"client": {
"tlsEnable": false,
"adminUser": "admin",
"adminPassword": "adminpw",
"enableAuthentication": false,
"organization": "RmMsp",
"channel": "samplenetwork",
"connection": {
"timeout": {
"peer": {
"endorser": "300"
},
"orderer": "300"
}
}
},
"channels": {
"samplenetwork": {
"peers": {
"peer0.rm.ex1.com": {},
"peer0.re.ex1.com": {}
},
"connection": {
"timeout": {
"peer": {
"endorser": "6000",
"eventHub": "6000",
"eventReg": "6000"
}
}
}
}
},
"organizations": {
"RmMsp": {
"mspid": "RmMsp",
"fullpath": true,
"adminPrivateKey": {
"path": "/tmp/crypto/peerOrganizations/rm.ex1.com/users/Admin@rm.ex1.com/msp/keystore/845f6a174e7880f48b2201b2d5fbb15dbc142b9521b9bb23f7e92ee83281b48c_sk"
},
"signedCert": {
"path": "/tmp/crypto/peerOrganizations/rm.ex1.com/users/Admin@rm.ex1.com/msp/signcerts/Admin@rm.ex1.com-cert.pem"
}
},
"ReMsp": {
"mspid": "ReMsp",
"fullpath": true,
"adminPrivateKey": {
"path": "/tmp/crypto/peerOrganizations/re.ex1.com/users/Admin@re.ex1.com/msp/keystore/dcc66298e88a958688d996786556b0fcdba74dc051d80c459e0e75a2177aad97_sk"
},
"signedCert": {
"path": "/tmp/crypto/peerOrganizations/re.ex1.com/users/Admin@re.ex1.com/msp/signcerts/Admin@re.ex1.com-cert.pem"
}
},
"OrdererMSP": {
"mspid": "RmOrdererMsp",
"adminPrivateKey": {
"path": "/tmp/crypto/ordererOrganizations/rm.orderer/users/Admin@rm.orderer/msp/keystore/cd5770674b623f5f4a2fb218d6d778a224d9c3b464a34b8a9f38153a3542ff5f_sk"
}
}
},
"peers": {
"peer0.rm.ex1.com": {
"tlsCACerts": {
"path": "/tmp/crypto/peerOrganizations/rm.ex1.com/peers/peer0.rm.ex1.com/tls/ca.crt"
},
"url": "grpc://peer0.rm.ex1.com:7051",
"eventUrl": "grpc://peer0.rm.ex1.com:7053",
"grpcOptions": {
"ssl-target-name-override": "peer0.rm.ex1.com"
}
},
"peer0.re.ex1.com": {
"tlsCACerts": {
"path": "/tmp/crypto/peerOrganizations/re.ex1.com/peers/peer0.re.ex1.com/tls/ca.crt"
},
"url": "grpc://peer0.re.ex1.com:8051",
"eventUrl": "grpc://peer0.re.ex1.com:8053",
"grpcOptions": {
"ssl-target-name-override": "peer0.re.ex1.com"
}
}
},
"orderers": {
"orderer.rm.ex1.com": {
"url": "grpc://orderer.rm.ex1.com:7050"
}
}
}
请参阅上图了解更多信息。
码头工人撰写文件
explorerdb.rm.ex1.com:
image: hyperledger/explorer-db:latest
container_name: explorerdb.rm.ex1.com
environment:
- DATABASE_DATABASE=fabricexplorer
- DATABASE_USERNAME=hppoc
- DATABASE_PASSWORD=password
volumes:
- ./createdb.sh:/docker-entrypoint-initdb.d/createdb.sh
- pgdata:/var/lib/postgresql/data
explorer.rm.ex1.com:
image: hyperledger/explorer:latest
container_name: explorer.rm.ex1.com
environment:
- DATABASE_HOST=explorerdb.rm.ex1.com
- DATABASE_USERNAME=hppoc
- DATABASE_PASSWD=password
- DISCOVERY_AS_LOCALHOST=false
volumes:
- ./scripts/config.json:/opt/explorer/app/platform/fabric/config.json
- ./scripts/connection-profile:/opt/explorer/app/platform/fabric/connection-profile
- ./crypto-config:/tmp/crypto
- walletstore:/opt/wallet
command: sh -c "sleep 16&& node /opt/explorer/main.js && tail -f /dev/null"
ports:
- 8090:8080
peer0.rm.ex1.com:
container_name: peer0.rm.ex1.com
extends:
file: /opt/shared/docker-compose-base.yaml
service: peer
environment:
- CORE_PEER_ID=peer0.rm.ex1.com
- CORE_PEER_ADDRESS=peer0.rm.ex1.com:7051
- CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer0.rm.ex1.com:7051
- CORE_PEER_GOSSIP_BOOTSTRAP=peer0.re.ex1.com:8051
- CORE_PEER_LOCALMSPID=RmMsp
- CORE_LEDGER_STATE_COUCHDBCONFIG_COUCHDBADDRESS=couch.peer0.rm.ex1.com:5984
volumes:
- /opt/rm/creds/peers/peer0.rm.ex1.com/msp:/etc/hyperledger/fabric/msp
- /opt/rm/creds/peers/peer0.rm.ex1.com/tls:/etc/hyperledger/fabric/tls
- peer0.rm.ex1.com:/var/hyperledger/production
ports:
- 7051:7051
peer0.re.ex1.com:
container_name: peer0.re.ex1.com
extends:
file: /opt/shared/docker-compose-base.yaml
service: peer
environment:
- CORE_PEER_ID=peer0.re.ex1.com
- CORE_PEER_ADDRESS=peer0.re.ex1.com:8051
- CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer0.re.ex1.com:8051
- CORE_PEER_GOSSIP_BOOTSTRAP=peer0.rm.ex1.com:7051
- CORE_PEER_LOCALMSPID=ReMsp
- CORE_LEDGER_STATE_COUCHDBCONFIG_COUCHDBADDRESS=couch.peer0.re.ex1.com:5984
volumes:
- /opt/re/creds/peers/peer0.re.ex1.com/msp:/etc/hyperledger/fabric/msp
- /opt/re/creds/peers/peer0.re.ex1.com/tls:/etc/hyperledger/fabric/tls
- peer0.re.ex1.com:/var/hyperledger/production
ports:
- 8051:8051
它必须显示两个同行:1)peer0.ri.ex1.com 2)peer0.re.ex1.com
但它只显示:peer0.ri.ex1.com。
任何线索将不胜感激!
我检查了资源管理器日志文件..第二个组织(ReMsp)是空的。请找到以下参考
orderers: { RmOrdererMsp: { endpoints: [Array] } },
peers_by_org: { RmMsp: { peers: [Array] }, ReMsp: { peers: [] } } }.
它看起来像 config.json 问题。任何线索将不胜感激。