Error installing .bna file on ibm starter plan for blockchain

我只是一个虾纸丫 提交于 2019-12-13 03:16:43

问题


All these while I had been running my Hyperledger composer on AWS and it had been great so far with all the configurations setup. But the starter plan has been launched by IBM like couple of days ago, and I had tried following the configurations on the IBM website.

Upon reaching to the last/final step of deploying the .bna file to the network, I am too facing this problem with composer 0.18.2 where, Do hope there's a solution on what I am missing it out.

✖ Starting business network definition. This may take a minute... Error: Error trying to instantiate composer runtime. Error: No valid responses from any peers. Response from attempted peer comms was an error: Error: REQUEST_TIMEOUT

Any help would be great, as this is fairly new to me, and it had sucked up couple of hours from me.


回答1:


The default timeout is 15s but on some systems, it is not sufficient. Try increasing the timeout value using:

export FABRIC_START_TIMEOUT=30




回答2:


Starter plan is currenlty compatible with composer 0.18.1 (not 0.81.2)

Suggestions for following 'deploying-a-business-networks-on-starter-plan'

Make sure you are running composer 0.18.1 (run composer -v and if not 0.18.1 run npm install -g composer-cli@0.18.1)

Run the sync command below after the status comment given in Step three, point 4. Make sure the peer is running before issuing the sync command curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' --basic --user ${USERID}:${PASSWORD} --data-binary '{}' ${API_URL}/api/v1/networks/${NETWORKID}/channels/${CHANNEL}/sync

If Step Five, point 2 (composer network start) fails with a timeout, it is recommended to wait a short while then try issuing the command again.




回答3:


Ensure your Node version is up to date (8.10.0) as well as npm (5.6.0).

As noted above, Starter Plan in only compatible with Composer 0.18.1. First, uninstall composer cli completely

npm uninstall -g composer-cli

before installing Composer 0.18.1

npm install -g composer-cli@0.18.1

After that, you can try running through the steps to deploy the .bna file to the network.



来源:https://stackoverflow.com/questions/49483203/error-installing-bna-file-on-ibm-starter-plan-for-blockchain

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!