Handshake failed with fatal error SSL_ERROR_SSL

前端 未结 2 1518
暖寄归人
暖寄归人 2021-01-03 12:27

I\'m following this tutorial https://hyperledger.github.io/composer/latest/tutorials/deploy-to-fabric-multi-org to deploy a composer blockchain business network to Hyperledg

2条回答
  •  误落风尘
    2021-01-03 12:40

    One of the reasons is using unsuitable node version. To add the Long Term Support (LTS) subversion of Node.js v8, we can use these commands:

    curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash
    source ~/.profile 
    nvm ls-remote
    nvm install v8.16.0
    nvm list
    nvm use v8.16.0
    node --version
    

提交回复
热议问题