Shell script to install a ImageCoin Masternode on a Linux server running Ubuntu 18.04 or higher. Use it on your own risk.
git clone https://github.com/mceme/Imagehosty.git
cd Imagehosty
bash img-install.sh
After the MN is up and running, you need to configure the desktop wallet accordingly. Here are the steps for Windows Wallet Blockchain download: https://mega.nz/file/vExWiKYB#RoT5G5JbNllDNWTL2olfZPOtzim9IfM0zoRAxiJD-7A
- Open the ImageCoin Coin Desktop Wallet.
- Go to RECEIVE and create a New Address: MN1
- Send 10000 ImageCoin to MN1.
- Wait for 15 confirmations.
- Go to Tools -> "Debug console - Console"
- Type the following command: 6.1 masternode genkey not share 6.2 masternode outputs
- Go to ** Tools -> "Open Masternode Configuration File"
- Add the following entry:
Alias Address Privkey TxHash Output_index
- Alias: MN1
- Address: VPS_IP:PORT
- Privkey: Masternode Private Key - value from Step 6.1
- TxHash: Firts value from Step 6.2
- Output index: Second value from Step 6.2
- Save and close the file.
- Go to Masternode Tab. If you tab is not shown, please enable it from: Settings - Options - Wallet - Show Masternodes Tab
- Click Update status to see your node. If it is not shown, close the wallet and start it again. Make sure the wallet is unlocked.
- Open Debug Console and type:
masternode start-alias "MN1"
ImageCoin-cli getinfo
ImageCoin-cli mnsync status
ImageCoin-cli masternode status
Also, if you want to check/start/stop ImageCoin , run one of the following commands as root:
Ubuntu 18.04:
systemctl status ImageCoin #To check the service is running.
systemctl start ImageCoin #To start ImageCoin service.
systemctl stop ImageCoin #To stop ImageCoin service.
systemctl is-enabled ImageCoin #To check whetether ImageCoin service is enabled on boot or not.