Skip to content

Latest commit

 

History

History
87 lines (70 loc) · 2.17 KB

Linux.md

File metadata and controls

87 lines (70 loc) · 2.17 KB

Linux VPS CCBC Daemon Installation Guide

Connect to your Linux VPS over SSH

  • Use your favorite terminal application on Linux or Putty/Bitvise clients on Windows
  • Connect to a terminal session with the Linux VPS

Update your system to the latest

  • From the terminal session, run the following commands
sudo apt-get update
sudo apt-get upgrade

Download the CCBC Linux Daemon

  • From the terminal session, run the following command
wget https://github.com/CryptoCashBack-Hub/CCBC/releases/download/v1.0.0.4/CCBC-linux.tar.gz
  • From the terminal session, run the following command
tar -xvf CCBC-linux.tar.gz

Install CCBC Linux Daemon Runtime Dependencies

  • From the terminal session, run the following commands
sudo apt autoremove -y && sudo apt-get update
sudo apt-get install -y libzmq3-dev libminiupnpc-dev libssl-dev libevent-dev
sudo apt-get install -y build-essential libtool autotools-dev automake pkg-config
sudo apt-get install -y bsdmainutils software-properties-common
sudo apt-get install -y libboost-all-dev
sudo add-apt-repository ppa:bitcoin/bitcoin -y
sudo apt-get update
sudo apt-get install -y libdb4.8-dev libdb4.8++-dev

Create your CCBC Linux Daemon configuration file

  • From the terminal session, run the following commands
mkdir -p ~/.ccbc
nano ~/.ccbc/ccbc.conf
  • Now add the following lines to this file, replacing any < > field with your information
    • Note: If your setting up a Linux Hot/Cold Wallet, comment out the masternode entries
rpcuser=<rpcusername>
rpcpassword=<rpcpassword>
rpcport=15520
listen=1
server=1
daemon=1
staking=0
rpcallowip=127.0.0.1
logtimestamps=1
masternode=1
port=5520
externalip=<externalip>:5520
masternodeprivkey=<masternode private key>
addnode=107.172.249.143
addnode=172.245.6.154
addnode=107.174.66.241
addnode=seeder.ccbcoin.club
  • Get the latest node seeds from
  • Copy and paste the addnode lines into the bottom of this file
  • Save and Exit

Start the CCBC Linux Daemon

./ccbcd

Wait for the CCBC Linux Daemon to sync

  • From the terminal session, run the following commands
watch ./ccbc-cli getinfo