VPS has 4 gb worth of swap space. Typed: FREE and this is what it brought back:
total used free shared buff/cache available
Mem: 499940 42852 17724 5080 439364 420872
Swap: 5119996 19968 5100028
These are the steps I did:
# --------------------------
# 1. Install dependencies
# --------------------------
sudo apt-get -y update && sudo apt-get -y install build-essential libssl-dev libdb++-dev libboost-all-dev libcrypto++-dev libqrencode-dev libminiupnpc-dev libgmp-dev libgmp3-dev autoconf autogen automake libtool autotools-dev pkg-config bsdmainutils software-properties-common libzmq3-dev libminiupnpc-dev libssl-dev libevent-dev
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev -y
# --------------------------
# 2. Clone repo
# --------------------------
git clone https://github.com/innovacoin/innova.git
# --------------------------
# 3. Build innova
# --------------------------
sudo ./autogen.sh
sudo ./configure
sudo make
# --------------------------
# 4. Run innova daemon
# --------------------------
~/innova/src/innovad -daemon
# --------------------------
# 5. Stop innova daemon
# --------------------------
~/innova/src/innova-cli stop
# --------------------------
# 6. Edit config file
# --------------------------
vi ~/.innovacore/innova.conf
Add to file:
rpcuser=USERNAME
rpcpassword=PASSWORD
rpcallowip=127.0.0.1
listen=1
server=1
daemon=1
staking=0
# --------------------------
# 7. Start innovad
# --------------------------
# --------------------------
# 8. Check last block synced
# --------------------------
~/innova/src/innova-cli getmininginfo
{
"blocks" : 19057,
"currentblocksize" : 0,
"currentblocktx" : 0,
"difficulty" : 86981.82878668,
"blockvalue" : 150000000000,
"netmhashps" : 1226758.61464298,
"netstakeweight" : 303434916154333.12500000,
"errors" : "",
"pooledtx" : 0,
"stakeweight" : {
"minimum" : 0,
"maximum" : 0,
"combined" : 0
},
"testnet" : false
}
# --------------------------
# 9. On your local Windows innova wallet click Tools->Debug Console and type
# --------------------------
Generates masternode private key: MASTERNODE_PRIVATE_KEY
getaccountaddress INN_MASTERNODE
Generates masternode address: GENERATED_MASTERNODE_ADDRESS
# --------------------------
# 10. Send 1000 INN to the address above and wait for 15 confirmations, Make sure to send 1000.1
# --------------------------
# --------------------------
# 11. Update your innova.conf file on VPS
# --------------------------
vi ~/.innovacore/innova.conf
Add to the file:
rpcuser=USERNAME
rpcpassword=PASSWORD
bind=VPS_IP_ADDRESS:14520
masternode=1
masternodeprivkey=MASTERNODE_PRIVATE_KEY
# --------------------------
# 12. On Windows wallet console TYPE
# --------------------------

{
"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" : "1"
}
# --------------------------
# 13. On Windows edit masternode.conf
# --------------------------
#LABEL PUBLICIP:PORT MASTERNODEKEY COLLATERALTX INDEX
INN_MASTERNODE VPS_IP_ADDRESS:14520 MASTERNODE_PRIVATE_KEY xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 1
# --------------------------
# 14. Start your VPS innovad daemon
# --------------------------
~/innova/src/innovad -daemon
# --------------------------
# 15. Restart your windows wallet
# --------------------------