0

我试图在我的本地机器(ubuntu OS)中安装 zcash insight ui & api 并且它完成了所有步骤但是我在前台启动服务时遇到了问题。

让我与您分享命令,配置文件。

<code>
npm install -g zcash-bitcore-node
zcash-bitcore-node create mynode
cd mynode
zcash-bitcore-node install insight-api
zcash-bitcore-node install insight-ui
zcash-bitcore-node start</code>

但是在我的终端中出现以下错误:

<code>
[2018-01-30T12:33:03.687Z] info: Using config: /home/kiran/zcashnodenew/zcash-bitcore-node.json
[2018-01-30T12:33:03.688Z] info: Using network: testnet
[2018-01-30T12:33:03.688Z] info: Starting bitcoind
[2018-01-30T12:33:03.690Z] info: Using zcash config file: /home/kiran/zcashnodenew/data/zcash.conf
[2018-01-30T12:33:03.691Z] info: Starting zcash process
[2018-01-30T12:33:03.699Z] error: Error: spawn /usr/local/lib/node_modules/zcash-bitcore-node/bin/zcashd ENOENT
at _errnoException (util.js:1003:13)
at Process.ChildProcess._handle.onexit (internal/child_process.js:201:19)
at onErrorNT (internal/child_process.js:389:16)
at process._tickCallback (internal/process/next_tick.js:152:19)
</code>

我的配置文件(zcash-bitcore-node.json)

{
  "network": "testnet",
  "port": 3003,
  "services": [
    "bitcoind",
    "insight-api",
    "insight-ui",
    "web"
  ],
  "servicesConfig": {
    "bitcoind": {
      "spawn": {
        "datadir": "./data",
        "exec": "/usr/local/lib/node_modules/zcash-bitcore-node/bin/zcashd"
      }
    }
  }
}

Zcash 配置 (zcash.conf)

server=1
whitelist=127.0.0.1
txindex=1
addressindex=1
timestampindex=1
spentindex=1
zmqpubrawtx=tcp://127.0.0.1:28332
zmqpubhashblock=tcp://127.0.0.1:28332
rpcallowip=127.0.0.1
rpcuser=bitcoin2
rpcpassword=local321
uacomment=bitcore

你能帮我吗?哪一步出了什么问题?

4

1 回答 1

2

查看这一行的 README。

安装 npm install -g zcash-bitcore-node zcash-bitcore-node start

要安装 Zcash,请遵循 Zcash Beta 指南。将您的 zcash-bitcore-node.json 指向 $DIR/zcash/src/zcashd。

在单独安装 zcashd 然后将我的配置文件中的 exec 路径更改为指向该位置后,它可以正常工作:

"servicesConfig": {
"bitcoind": {
  "spawn": {
    "datadir": "/storage/zcash-testnet",
    "exec": "/usr/bin/zcashd"
  }
},

我知道这已经很晚了,但我希望它对某人有所帮助!

编辑,为清楚起见..

于 2018-07-06T13:45:22.007 回答