首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >超级分类器资源管理器[调试] FabricClient -在grpc://localhost:7051中找不到管理端

超级分类器资源管理器[调试] FabricClient -在grpc://localhost:7051中找不到管理端
EN

Stack Overflow用户
提问于 2018-10-26 10:41:32
回答 2查看 942关注 0票数 0

无法用fabric 1.2配置资源管理器3.8I正在尝试将超级分类器资源管理器与fabric集成,并且在我的情况下不使用TLS,它是false。有人能帮我一下吗。

超级分类账资源管理器3.8

超级分类账织物1.2

节点js v8.11.4

postgresql 9.5

logs/console/console.log

代码语言:javascript
复制
postgres://hppoc:password@127.0.0.1:5432/fabricexplorer
(node:28473) DeprecationWarning: grpc.load: Use the @grpc/proto-loader module with grpc.loadPackageDefinition instead

Please open web browser to access :http://localhost:8080/

pid is 28473

postgres://hppoc:password@127.0.0.1:5432/fabricexplorer

Sync process is started for the network : [net_basic] and client : [org1]
(node:28493) DeprecationWarning: grpc.load: Use the @grpc/proto-loader module with grpc.loadPackageDefinition instead
<<<<<<<<<<<<<<<<<<<<<<<<<< Synchronizer Error >>>>>>>>>>>>>>>>>>>>>
Error :  [ 'Failed to connect client peer, please check the configuration and peer status' ]
<<<<<<<<<<<<<<<<<<<<<<<<<< Closing client processor >>>>>>>>>>>>>>>>>>>>>

logs/app/app.log

代码语言:javascript
复制
[2018-10-26 10:20:35.233] [DEBUG] FabricClient - Channel genesis hash for channel [mychannel] >> ac4b7048da8b35c7b740babcb4dd8f911c94a15e45f442d5f6291a66f9b5ec5d
[2018-10-26 10:20:35.233] [DEBUG] FabricClient - Initialized channel >> mychannel
[2018-10-26 10:20:35.244] [DEBUG] FabricClient - Set client [cli] default orderer as  >> grpc://localhost:7050
[2018-10-26 10:20:35.245] [DEBUG] FabricClient - Admin peer Not found for grpc://localhost:7051

,这是我的config.json

代码语言:javascript
复制
{
"network-configs": {
    "net_basic": {
        "version": "1.0",
        "clients": {
            "org1": {
                "tlsEnable": false,
                "organization": "Org1MSP",
                "channel": "mychannel",
                "credentialStore": {
                    "path": "./tmp/credentialStore_Org1/credential",
                    "cryptoStore": {
                        "path": "./tmp/credentialStore_Org1/crypto"
                    }
                }
            }
        },
        "channels": {
            "mychannel": {
                "peers": {
                    "peer0.org1.example.com": {}
                },
                "connection": {
                    "timeout": {
                        "peer": {
                            "endorser": "9000",
                            "eventHub": "9000",
                            "eventReg": "9000"
                        }
                    }
                }
            }
        },
        "organizations": {
            "Org1MSP": {
                "mspid": "Org1MSP",
                "fullpath": false,
                "adminPrivateKey": {
                    "path": "/education/Example/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore"
                },
                "signedCert": {
                    "path": "/education/Example/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts"
                }
            },
            "OrdererMSP": {
                "mspid": "OrdererMSP",
                "adminPrivateKey": {
                    "path": "/education/Example/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore"
                }
            }
        },
        "peers": {
            "peer0.org1.example.com": {
                "tlsCACerts": {
                    "path": "/education/Example/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt"
                },
                "url": "grpc://localhost:7051",
                "eventUrl": "grpc://localhost:7053",
                "grpcOptions": {
                    "ssl-target-name-override": "peer0.org1.example.com"
                }
            }
        },
        "orderers": {
            "orderer.example.com": {
                "url": "grpc://localhost:7050"
            }
        }
    },
    "network-2": {}
  },
"configtxgenToolPath": "/home/ubuntu/user/binaries/fabric-samples/bin/",
"license": "Apache-2.0"
}
EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2018-10-28 16:45:11

尝试添加最后一行(CORE_PEER_GOSSIP_EXTERNALENDPOINT)

代码语言:javascript
复制
peer0.org1.example.com:
container_name: peer0.org1.example.com
image: hyperledger/fabric-peer
environment:
  - CORE_VM_ENDPOINT=unix:///host/var/run/docker.sock
  - CORE_PEER_ID=peer0.org1.example.com
  - CORE_LOGGING_PEER=info
  - CORE_CHAINCODE_LOGGING_LEVEL=info
  - CORE_PEER_LOCALMSPID=Org1MSP
  - CORE_PEER_MSPCONFIGPATH=/etc/hyperledger/msp/peer/
  - CORE_PEER_ADDRESS=peer0.org1.example.com:7051
  - CORE_PEER_GOSSIP_EXTERNALENDPOINT=peer0.org1.example.com:7051

在相应的docker-compose.yml中,它描述了网络。如果没有这一行,对等点似乎只在组织中可见。您还需要./generate.sh和./start.sh网络。希望能帮上忙。

票数 1
EN

Stack Overflow用户

发布于 2018-10-26 14:08:16

通过更新blockchain-explorer/app/platform/fabric/config.json,配置到fabric的连接参见自述文件中提供的说明,搜索“## Fabric Configure Explorer”。

票数 -2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/53006932

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档