我成功安装了 bitcore 并且能够使用 bitcore-node 启动运行。但我想在后台将它作为服务运行。
Bitcore-node的安装步骤。
curl -sL https://deb.nodesource.com/setup_4.x | sudo bash -
sudo apt-get install nodejs
sudo apt-get install python
sudo apt-get install libzmq3-dev build-essential
npm install -g bitcore-node (https://github.com/bitpay/bitcore-node)
bitcore-node start
完美运行
我在
/etc/systemd/system
[Unit]
Description=bitcored.service
After=network.target
[Service]
Type=simple
User=ubuntu
Environment="PATH=$PATH:/home/ubuntu/usr/bin"
ExecStart=/root/bin/node /usr/lib/node_modules/bitcore-node/bin/bitcore-node
ExecReload=/bin/kill -2 $MAINPID
KillMode=process
Restart=on-failure
[Install]
WantedBy=multi-user.target
在执行命令
sudo service bitcore status
时,我收到以下错误。
任何帮助,将不胜感激。