Hyperledger explorer starting problem- orderer port communication issue
I just started my hyperledger composer network. Now I need to start hyperledger explorer for this network. I already download the hyperledger explorer github repository using the link https://github.com/hyperledger/blockchain-explorer. I just try to start the explorer. But get the error in every time that
enter Please open web browser to access :http://localhost:9048/
pid is 31931
[31merror[39m: [Orderer.js]: sendDeliver - rejecting - status:NOT_FOUND
[31merror[39m: [Orderer.js]: sendDeliver - rejecting - status:NOT_FOUND
[31merror[39m: [Orderer.js]: sendDeliver - rejecting - status:NOT_FOUND
(node:31931) UnhandledPromiseRejectionWarning: Error: Invalid results returned ::NOT_FOUND
at ClientDuplexStream.<anonymous> (/home/myname/Pictures/blockchain-explorer-Production/node_modules/fabric-client/lib/Orderer.js:229:22)
at ClientDuplexStream.emit (events.js:180:13)
at addChunk (_stream_readable.js:274:12)
at readableAddChunk (_stream_readable.js:261:11)
at ClientDuplexStream.Readable.push (_stream_readable.js:218:10)
at readCallback (/home/myname/Pictures/blockchain-explorer-Production/node_modules/grpc/src/client.js:312:14)
(node:31931) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:31931) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
(node:31931) UnhandledPromiseRejectionWarning: Error: Invalid results returned ::NOT_FOUND
at ClientDuplexStream.<anonymous> (/home/myname/Pictures/blockchain-explorer-Production/node_modules/fabric-client/lib/Orderer.js:229:22)
textProperty config.syncStartDate set to 2018/10/01
I think the error is due to orderer service.
I fully checked my orderer port in config.json file of hyperledger explorer.
{
"network-config": {
"org1": {
"name": "Org1",
"mspid": "Org1example",
"peer0": {
"requests": "grpc://192.168.1.49:7051",
"events": "grpc://192.168.1.49:7053",
"server-hostname": "peer0.org1.example.com",
"tls_cacerts": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt"
},
"peer1": {
"requests": "grpc://192.168.1.49:9051",
"events": "grpc://192.168.1.49:9053",
"server-hostname": "peer1.org1.example.com",
"tls_cacerts": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt"
},
"admin": {
"key": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore",
"cert": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts"
}
}
},
"channel": "examplechannel",
"orderers":[
{
"mspid": "OrdererOrg",
"server-hostname":"orderer0.example.com",
"requests":"grpc://192.168.1.49:7050",
"tls_cacerts":"/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/ordererOrganizations/example.com/orderers/orderer0.example.com/tls/ca.crt"
}
],
"keyValueStore": "/tmp/fabric-client-kvs",
"configtxgenToolPath": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/bin",
"SYNC_START_DATE_FORMAT":"YYYY/MM/DD",
"syncStartDate":"2018/08/01",
"eventWaitTime": "30000",
"license": "Apache-2.0",
"version": "1.1"
}
Fabric:1.1.0
Composer:0.19.16
OS: Ubuntu 16.04
Explorer: 0.3.4
How it solve. Please give me an idea to solve this issue. Thanks in advance
hyperledger hyperledger-explorer
add a comment |
I just started my hyperledger composer network. Now I need to start hyperledger explorer for this network. I already download the hyperledger explorer github repository using the link https://github.com/hyperledger/blockchain-explorer. I just try to start the explorer. But get the error in every time that
enter Please open web browser to access :http://localhost:9048/
pid is 31931
[31merror[39m: [Orderer.js]: sendDeliver - rejecting - status:NOT_FOUND
[31merror[39m: [Orderer.js]: sendDeliver - rejecting - status:NOT_FOUND
[31merror[39m: [Orderer.js]: sendDeliver - rejecting - status:NOT_FOUND
(node:31931) UnhandledPromiseRejectionWarning: Error: Invalid results returned ::NOT_FOUND
at ClientDuplexStream.<anonymous> (/home/myname/Pictures/blockchain-explorer-Production/node_modules/fabric-client/lib/Orderer.js:229:22)
at ClientDuplexStream.emit (events.js:180:13)
at addChunk (_stream_readable.js:274:12)
at readableAddChunk (_stream_readable.js:261:11)
at ClientDuplexStream.Readable.push (_stream_readable.js:218:10)
at readCallback (/home/myname/Pictures/blockchain-explorer-Production/node_modules/grpc/src/client.js:312:14)
(node:31931) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:31931) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
(node:31931) UnhandledPromiseRejectionWarning: Error: Invalid results returned ::NOT_FOUND
at ClientDuplexStream.<anonymous> (/home/myname/Pictures/blockchain-explorer-Production/node_modules/fabric-client/lib/Orderer.js:229:22)
textProperty config.syncStartDate set to 2018/10/01
I think the error is due to orderer service.
I fully checked my orderer port in config.json file of hyperledger explorer.
{
"network-config": {
"org1": {
"name": "Org1",
"mspid": "Org1example",
"peer0": {
"requests": "grpc://192.168.1.49:7051",
"events": "grpc://192.168.1.49:7053",
"server-hostname": "peer0.org1.example.com",
"tls_cacerts": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt"
},
"peer1": {
"requests": "grpc://192.168.1.49:9051",
"events": "grpc://192.168.1.49:9053",
"server-hostname": "peer1.org1.example.com",
"tls_cacerts": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt"
},
"admin": {
"key": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore",
"cert": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts"
}
}
},
"channel": "examplechannel",
"orderers":[
{
"mspid": "OrdererOrg",
"server-hostname":"orderer0.example.com",
"requests":"grpc://192.168.1.49:7050",
"tls_cacerts":"/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/ordererOrganizations/example.com/orderers/orderer0.example.com/tls/ca.crt"
}
],
"keyValueStore": "/tmp/fabric-client-kvs",
"configtxgenToolPath": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/bin",
"SYNC_START_DATE_FORMAT":"YYYY/MM/DD",
"syncStartDate":"2018/08/01",
"eventWaitTime": "30000",
"license": "Apache-2.0",
"version": "1.1"
}
Fabric:1.1.0
Composer:0.19.16
OS: Ubuntu 16.04
Explorer: 0.3.4
How it solve. Please give me an idea to solve this issue. Thanks in advance
hyperledger hyperledger-explorer
Give any idea to solve it
– salman faris
Jan 30 at 3:39
Hey.. Please give a any help for solve this issue
– salman faris
Feb 6 at 7:30
add a comment |
I just started my hyperledger composer network. Now I need to start hyperledger explorer for this network. I already download the hyperledger explorer github repository using the link https://github.com/hyperledger/blockchain-explorer. I just try to start the explorer. But get the error in every time that
enter Please open web browser to access :http://localhost:9048/
pid is 31931
[31merror[39m: [Orderer.js]: sendDeliver - rejecting - status:NOT_FOUND
[31merror[39m: [Orderer.js]: sendDeliver - rejecting - status:NOT_FOUND
[31merror[39m: [Orderer.js]: sendDeliver - rejecting - status:NOT_FOUND
(node:31931) UnhandledPromiseRejectionWarning: Error: Invalid results returned ::NOT_FOUND
at ClientDuplexStream.<anonymous> (/home/myname/Pictures/blockchain-explorer-Production/node_modules/fabric-client/lib/Orderer.js:229:22)
at ClientDuplexStream.emit (events.js:180:13)
at addChunk (_stream_readable.js:274:12)
at readableAddChunk (_stream_readable.js:261:11)
at ClientDuplexStream.Readable.push (_stream_readable.js:218:10)
at readCallback (/home/myname/Pictures/blockchain-explorer-Production/node_modules/grpc/src/client.js:312:14)
(node:31931) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:31931) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
(node:31931) UnhandledPromiseRejectionWarning: Error: Invalid results returned ::NOT_FOUND
at ClientDuplexStream.<anonymous> (/home/myname/Pictures/blockchain-explorer-Production/node_modules/fabric-client/lib/Orderer.js:229:22)
textProperty config.syncStartDate set to 2018/10/01
I think the error is due to orderer service.
I fully checked my orderer port in config.json file of hyperledger explorer.
{
"network-config": {
"org1": {
"name": "Org1",
"mspid": "Org1example",
"peer0": {
"requests": "grpc://192.168.1.49:7051",
"events": "grpc://192.168.1.49:7053",
"server-hostname": "peer0.org1.example.com",
"tls_cacerts": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt"
},
"peer1": {
"requests": "grpc://192.168.1.49:9051",
"events": "grpc://192.168.1.49:9053",
"server-hostname": "peer1.org1.example.com",
"tls_cacerts": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt"
},
"admin": {
"key": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore",
"cert": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts"
}
}
},
"channel": "examplechannel",
"orderers":[
{
"mspid": "OrdererOrg",
"server-hostname":"orderer0.example.com",
"requests":"grpc://192.168.1.49:7050",
"tls_cacerts":"/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/ordererOrganizations/example.com/orderers/orderer0.example.com/tls/ca.crt"
}
],
"keyValueStore": "/tmp/fabric-client-kvs",
"configtxgenToolPath": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/bin",
"SYNC_START_DATE_FORMAT":"YYYY/MM/DD",
"syncStartDate":"2018/08/01",
"eventWaitTime": "30000",
"license": "Apache-2.0",
"version": "1.1"
}
Fabric:1.1.0
Composer:0.19.16
OS: Ubuntu 16.04
Explorer: 0.3.4
How it solve. Please give me an idea to solve this issue. Thanks in advance
hyperledger hyperledger-explorer
I just started my hyperledger composer network. Now I need to start hyperledger explorer for this network. I already download the hyperledger explorer github repository using the link https://github.com/hyperledger/blockchain-explorer. I just try to start the explorer. But get the error in every time that
enter Please open web browser to access :http://localhost:9048/
pid is 31931
[31merror[39m: [Orderer.js]: sendDeliver - rejecting - status:NOT_FOUND
[31merror[39m: [Orderer.js]: sendDeliver - rejecting - status:NOT_FOUND
[31merror[39m: [Orderer.js]: sendDeliver - rejecting - status:NOT_FOUND
(node:31931) UnhandledPromiseRejectionWarning: Error: Invalid results returned ::NOT_FOUND
at ClientDuplexStream.<anonymous> (/home/myname/Pictures/blockchain-explorer-Production/node_modules/fabric-client/lib/Orderer.js:229:22)
at ClientDuplexStream.emit (events.js:180:13)
at addChunk (_stream_readable.js:274:12)
at readableAddChunk (_stream_readable.js:261:11)
at ClientDuplexStream.Readable.push (_stream_readable.js:218:10)
at readCallback (/home/myname/Pictures/blockchain-explorer-Production/node_modules/grpc/src/client.js:312:14)
(node:31931) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:31931) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
(node:31931) UnhandledPromiseRejectionWarning: Error: Invalid results returned ::NOT_FOUND
at ClientDuplexStream.<anonymous> (/home/myname/Pictures/blockchain-explorer-Production/node_modules/fabric-client/lib/Orderer.js:229:22)
textProperty config.syncStartDate set to 2018/10/01
I think the error is due to orderer service.
I fully checked my orderer port in config.json file of hyperledger explorer.
{
"network-config": {
"org1": {
"name": "Org1",
"mspid": "Org1example",
"peer0": {
"requests": "grpc://192.168.1.49:7051",
"events": "grpc://192.168.1.49:7053",
"server-hostname": "peer0.org1.example.com",
"tls_cacerts": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt"
},
"peer1": {
"requests": "grpc://192.168.1.49:9051",
"events": "grpc://192.168.1.49:9053",
"server-hostname": "peer1.org1.example.com",
"tls_cacerts": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt"
},
"admin": {
"key": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore",
"cert": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts"
}
}
},
"channel": "examplechannel",
"orderers":[
{
"mspid": "OrdererOrg",
"server-hostname":"orderer0.example.com",
"requests":"grpc://192.168.1.49:7050",
"tls_cacerts":"/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/crypto-config/ordererOrganizations/example.com/orderers/orderer0.example.com/tls/ca.crt"
}
],
"keyValueStore": "/tmp/fabric-client-kvs",
"configtxgenToolPath": "/home/myname/Pictures/Kafka-Fabric-Network-master-3peer/bin",
"SYNC_START_DATE_FORMAT":"YYYY/MM/DD",
"syncStartDate":"2018/08/01",
"eventWaitTime": "30000",
"license": "Apache-2.0",
"version": "1.1"
}
Fabric:1.1.0
Composer:0.19.16
OS: Ubuntu 16.04
Explorer: 0.3.4
How it solve. Please give me an idea to solve this issue. Thanks in advance
hyperledger hyperledger-explorer
hyperledger hyperledger-explorer
edited Jan 4 at 10:23
salman faris
asked Jan 1 at 8:57
salman farissalman faris
2511
2511
Give any idea to solve it
– salman faris
Jan 30 at 3:39
Hey.. Please give a any help for solve this issue
– salman faris
Feb 6 at 7:30
add a comment |
Give any idea to solve it
– salman faris
Jan 30 at 3:39
Hey.. Please give a any help for solve this issue
– salman faris
Feb 6 at 7:30
Give any idea to solve it
– salman faris
Jan 30 at 3:39
Give any idea to solve it
– salman faris
Jan 30 at 3:39
Hey.. Please give a any help for solve this issue
– salman faris
Feb 6 at 7:30
Hey.. Please give a any help for solve this issue
– salman faris
Feb 6 at 7:30
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53994194%2fhyperledger-explorer-starting-problem-orderer-port-communication-issue%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53994194%2fhyperledger-explorer-starting-problem-orderer-port-communication-issue%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Give any idea to solve it
– salman faris
Jan 30 at 3:39
Hey.. Please give a any help for solve this issue
– salman faris
Feb 6 at 7:30