Ok.. I had someone create a basic tutorial on how to setup multiple masternodes on Las Vegas coin. I have no idea if the instructions are correct or not. If you see an error, please post here , so I can correct it. If you confirm that it works, then please post that also.
Installation and operation of a remote vps server for multiple masternodes
First, download the Windows Wallet:
https://github.com/LIMXTEC/LasVegasCoin2/releases/download/v2.0.0.3/lasvegascoin-qt.exe Open the wallet then goto:
Tools -> Debug Window -> Console
Then type :
getnewaddress
The output will be the new address for your masternode.
Highlight and copy this address
Next type: click on unlock wallet, and do a FULL unlock. Do NOT check the box that says "for staking,...."
sendtoaddress <address you just copied, paste it here> 1000
So it shold look something like this:
sendtoaddress VeGsmNfchv3i7yY2dbigkRZfLvFZU2MzSm 1000
You will get an output, that looks similar to this: 696f58e448dd34efcb022579f4a6c65a0f7aa767cf93d7e412f7ee60d53fd35c
This is your tx
Next type:
masternode genkey
It will return an output similar to this: 87GVAVxsaF3jLjJ65WvQ6zLAvhgMfTWm6t5jWPqwo6KdVNxf66H
Now type:
masternode outputs
You will get an output similar to this:
"696f58e448dd34efcb0225d6f4a8c65a0f7aa762cf83d4e412f7ee68d53fd35c" : "1",
Ok now you need to setup your VPS server.
1st download Ubunut server: Ubuntu Server 16.04.3 x64
Once Ubuntu server is loaded then download:
Putty :
http://www.putty.org/Port check :
http://ping.eu/port-chk/bring up a terminal and type:
adduser newuser
passwd newuser
make a swapfile (for small VPS)
sudo dd if=/dev/zero of=/var/swap.img bs=1024k count=1000
sudo mkswap /var/swap.img
sudo swapon /var/swap.img
sudo chmod 0600 /var/swap.img
sudo chown root:root /var/swap.img
Now type:
sudo nano /etc/fstab
/var/swap.img none swap sw 0 0
ufw - Firewall
sudo ufw status verbose
sudo ufw allow OpenSSH
sudo ufw allow 60702
sudo ufw default deny incoming
sudo ufw default allow outgoing
sudo ufw enable
sudo apt-get install -y build-essential software-properties-common autoconf libssl-dev libboost-dev libboost-chrono-dev libboost-filesystem-dev libboost-program-options-dev libboost-system-dev libboost-test-dev libboost-thread-dev sudo automake git
#sudo add-apt-repository ppa:bitcoin/bitcoin -y
sudo apt-get update
#sudo apt-get install libdb4.8-dev bsdmainutils libdb4.8++-dev -y
wget
https://github.com/LIMXTEC/LasVegasCoin2/releases/download/v2.0.0.3/linux.Ubuntu.16.04.LTS_non_static.tar.gztar -xvf linux.Ubuntu.16.04.LTS_non_static.tar.gz
mkdir ~/vgs
sudo cp ~/vgs/lasvegascoind /usr/local/bin/
sudo cp ~/vgs/lasvegascoin-cli /usr/local/bin/
sudo cp ~/vgs/lasvegascoin-tx /usr/local/bin/
nano .lasvegascoinV2/lasvegascoin.conf
rpcuser=user
rpcpassword=ASecurePasswordThatYouDontNeedToRemember
daemon=1
server=1
listen=1
logtimestamps=1
masternode=1
masternodeprivkey=< >
externalip=<IP VPS>
lasvegascoind -daemon
VGS server starting
Open your masternode.conf file
MN1 <IP VPS:60702> <privkey> <TX output> IMPORTANT: your TX output will have a :0 or a :1 at the end. You MUST include this!
masternode start