- Register on bitping.com
- Download bitping node
- Unzip downloaded file:
unzip linux.zip; cd release
- Run server node and initiate credentials:
./bitping-node-amd64-linux -server
That’s all or go to next steps for more sophisticated installation.
#1
cd /etc/init.d
nano bitping.sh
#and paste it:
#!/bin/sh
cd /root/release # <= path to bitping
./bitping-node-amd64-linux -server
echo "Bitping started."
#2
nano /lib/systemd/system/bitping.service
# and paste it:
[Unit]
Description=Bitping
After=network.target
[Service]
User=root
WorkingDirectory=/root/bitping/ # <= path to bitping
ExecStart=/bin/sh /etc/init.d/bitping.sh
Restart=always
RestartSec=60
StandardOutput=inherit
StandardError=inherit
[Install]
WantedBy=multi-user.target
#3
systemctl enable bitping.service
systemctl start bitping.service
systemctl status bitping.service