I have tried to installed zcoin insight ui & api in my local machine (ubuntu OS) and it is completed all the steps but I m facing issue while start services in frontground.
Let me share with you command, config file.
sudo apt-get install software-properties-common sudo add-apt-repository ppa:bitcoin/bitcoin sudo apt-get update sudo apt-get install libdb4.8-dev libdb4.8++-dev sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils sudo apt-get install libboost-all-dev sudo apt install libminiupnpc-dev sudo apt-get install libzmq3-dev sudo apt-get install libqrencode-dev git clone https://github.com/zcoinofficial/zcoin.git cd zcoin ./autogen.sh ./configure make cd src ./zcoind
But getting below error in my terminal:
[2018-02-07T14:05:58.941Z] info: Starting bitcoin process zcoind: zmq/zmqpublishnotifier.cpp:99: virtual void CZMQAbstractPublishNotifier::Shutdown(): Assertion `psocket' failed. [2018-02-07T14:05:59.837Z] warn: Bitcoin process unexpectedly exited with code: null [2018-02-07T14:05:59.837Z] warn: Restarting bitcoin child process in 5000ms [2018-02-07T14:06:04.837Z] info: Using bitcoin config file: /home/zcoincore/bitcore-node-zcoin/zcoinnode/data/zcoin.conf [2018-02-07T14:06:04.838Z] info: Starting bitcoin process [2018-02-07T14:06:04.847Z] error: Failed to start services
MY Config File (zcash-bitcore-node.json)
{ "network": "testnet", "port": 3004, "services": [ "bitcoind", "insight-api-zcoin", "insight-ui-zcoin", "web" ], "servicesConfig": { "bitcoind": { "spawn": { "datadir": "./data", "exec": "/home/zcoincore/zcoin/src/zcoind" } } } }
Zcash Config (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=YANNISCOOLUSER rpcpassword=YANNPASSISCOOL uacomment=bitcore
Can you please help me with it? What is wrong in which step?