-1

我成功安装了 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时,我收到以下错误。

在此处输入图像描述

任何帮助,将不胜感激。

4

1 回答 1

0

我用过pm2

# install pm2
npm install pm2 -g

# go into your project and start it with pm2
cd mynode
pm2 start bitcore -- start

# check the logs that all runs smoothly
pm2 logs

# if everything runs fine 
# can setup the script to run on boot/reboot
pm2 startup
pm2 save 

更多信息

于 2018-03-14T16:22:45.193 回答