我是区块链的新手,我试图通过使用官方文档来运行Hyperledger Explorer,但在资源管理器的自述文件中遇到了以下问题
Fabric配置Hyperledger Explorer
第3点:将“ network-id.clients.client-id.channel”修改为每个客户端的默认频道
我无法理解需要为此在哪个文件中进行更改。
因此,我收到以下错误。
postgres:// hppoc:password@127.0.0.1:5432 / fabricexplorer (节点:13952)不建议使用警告:grpc.load:请将@ grpc / proto-loader模块与grpc.loadPackageDefinition一起使用 <<<<<<<<<<<<<<<<<<<<<<<<<<< Explorer Explorer >>>>>>>>>>>>>>>>>>>>>>>>>>> {错误:12已取消投放:未知的服务发现。发现 在Object.exports.createStatusError(/your/path/blockchain-explorer/node_modules/grpc/src/common.js:87:15) 在Object.onReceiveStatus(/您的/路径/blockchain-explorer/node_modules/grpc/src/client_interceptors.js:1188:28) 在InterceptingListener._callNext(/您的/路径/blockchain-explorer/node_modules/grpc/src/client_interceptors.js:564:42) 在InterceptingListener.onReceiveStatus上(/您/路径/blockchain-explorer/node_modules/grpc/src/client_interceptors.js:614:8) 在回调时(/your/path/blockchain-explorer/node_modules/grpc/src/client_interceptors.js:841:24) 代码:12 元数据:元数据{_internal_repr:{}}, 详细信息:“未知服务发现。发现”} 收到终止信号,正常关闭 封闭的连接
答案 0 :(得分:0)
要编辑的文件是blockchain-explorer / app / platform / fabric / config.json。
例如:
"network-configs": {
"network-1": {
"version": "1.0",
"clients": {
"client-1": {
"tlsEnable": true,
"organization": "UserOrg",
"channel": "mychannel",
"credentialStore": {
"path": "./tmp/credentialStore_UserOrg/credential",
"cryptoStore": {
"path": "./tmp/credentialStore_UserOrg/crypto"
}
}
}
}
...