NAV Coin NavTech Server Installation and setup instructions

Size: px
Start display at page:

Download "NAV Coin NavTech Server Installation and setup instructions"

Transcription

1 NAV Coin NavTech Server Installation and setup instructions NavTech disconnects sender and receiver Unique double-blockchain Technology V4.0.5 October 2017

2 2

3 Index General information... 5 NavTech... 5 Requirements... 5 Recommended server specs... 5 Remote connection... 5 Guide explanation... 5 Installation order... 6 Support... 6 NavTechServers.com... 6 Github... 6 Donate... 6 NAV Coin Core installation... 7 Subchain Core installation Install NavTech Install tools and download source Install git and npm: Install nodejs: Clone NavTech Setup Incoming Server Configure default.json Random string generator Running the incoming setup scripts Error? Build NavTech Forever Setup Outgoing Server Running the Outgoing setup scripts Error? Build NavTech Forever

4 Creating Backup Subchain Coin (Incoming) NAV Coins in the NavPool (Outgoing) Testing NavTech server cluster How to test the servers? Make the cluster public Starting the servers Outgoing server Incoming server Announce the Server Cluster Reddit NavTechServers.com

5 General information NavTech NAV Coin is a privacy focused digital currency. The NAV Coin Team built a platform for anonymous transactions, called NavTech. NavTech combines two blockchains, the NAV Coin blockchain and the Subchain, to disconnect sender and receiver. A NavTech server cluster needs a minimum of two servers, an incoming and an outgoing server. The incoming server receives NAV Coin transactions, sends transactions information encrypted over the Subchain to the outgoing server and the outgoing server sends NAV Coin to the receiver out of the NavPool. In a next cycle the NavPool is filled with the NAV Coin from the incoming server. Requirements You will need two servers, one incoming and one outgoing server, with different IP-addresses for a NavTech cluster. On both servers you will have to install the NAV Coin Core, Subchain Core and NavTech. The incoming and outgoing servers have a different configuration. When the server cluster is ready for use you can announce this. Everyone can make use of the server cluster and the server operator will receive transaction fees. Recommended server specs Component CPU RAM Hard Disk Operating System Value 2 x 2.4 Ghz Intel Xeon 2 GB 40GB 64bit Debian or Ubuntu API Port 3000 Remote connection Different VPS providers offer different ways of configuring your VPS server. To connect to your server remotely you have to enable SSH. (Guide for Ubuntu 16.04: Once you have SSH enabled, you can remote connect to your server. PuTTY ( for example, is a program you can use for this. It connects to the CLI (Command Line Interface) of your server. Guide explanation In this guide you will mostly find commands used for installing and configuring your NavTech servers. If you have never worked with Ubuntu or a CLI it can be a little challenging to get used to it. There are 5

6 plenty of guides available on the internet to help you with the basics and explain the general structure and commands. Every new line in the textboxes is a new command! This guide does not show every single command output. Most outputs just show the progress of unzipping, installing,. Just read careful what to do and follow the exact commands. Check carefully if you entered the correct commands with all the. and /. The command is used for moving between folders. Always make sure you work in the correct folder. If you follow the guide exactly, you should always be in the correct folder. Sometimes you will be asked if you are sure you want to install something (Y/N), press Y to continue in that case. This guide was written at the time of NAV Coin Core v In the future different versions will be used. URL can be different because of that. Installation order 1. Install NAV Coin Core (Both Servers) 2. Install Subchain Core (Both Servers) 3. Configure Incoming Server 4. Configure Outgoing Server 5. Making backups 6. Load NAV Coin and Subchain Coin 7. Test the NavTech Cluster 8. Start and announce the NavTech Cluster Support Need support with setting up your NavTech Server Cluster? The best place to get support is the NAV Coin Slack channel. Sign up for Slack: and join Slack at: Join #NavTech channel to ask questions about NavTech. NavTechServers.com is a website made by colvano. All NavTech server clusters are listed on this website. NTS also provides written and video tutorials for everything related to NAV Coin/NavTech. Github The official NAV Coin GitHub can be found at Donate You can show your appreciation for this document by donating to: Bocyaj: NMa6VisrXr6tBSeL3jwjCCEPLaFAMUggd6 Colvano: NAm1KcutKi7xafvKLaVP2MsBgnw1pjT1 6

7 NAV Coin Core installation First, install the NAV Coin Core on both servers. It is easiest to do both servers at the same time since the steps are exactly the same. The NAV Coin Core is the NAV Coin Core full node wallet. For the server we will be using the CLI version without a graphical user interface. Make sure to change the RPCuser and RPCpassword in the navcoin.conf file and write it down somewhere. You will need those later in the process. I recommend writing down the changes you make in the configuration file. This way you will be able to look it up at a later moment without having to open the file. 1) Install required libraries and tools for your wallet: NOTE: you will be prompted to enter the password for your user. NOTE: All in the textbox below is one line of code! This is the only multiple line code in the document. sudo apt-get -y install build-essential libssl-dev libdb++-dev libcurl3-dev libboost-all-dev libqrencode-dev libgmp3-dev libminiupnpc-dev git zip automake npm 2) Download and extract the NAV Coin wallet: NOTE: Check the latest version of the NAV Coin Core wallet. The URL could be different. wget tar zxvf navcoin x86_64-linux-gnu.tar.gz 3) Briefly start the NAV Coin wallet so that the configuration directory is created../navcoin-4.0.5/bin/navcoind 4) After a few seconds, press ctrl+c to kill this process and get back to the command line. 5) Download the blockchain bootstrap file into the NavCoin4 folder (.navcoin4 because it is an hidden folder). The URL can be different in the future..navcoin4 wget unzip -o navcoin blockchain.zip 7

8 6) Create a configuration file using a terminal editor called nano. You will need to do this step on both incoming and outgoing servers individually..navcoin4 sudo nano navcoin.conf a) Copy the contents of the text box below and paste them in the navcoin.conf file. Replace the rpcuser and rpcpassword values as indicated. Only use characters and numbers for the rpcuser/rpcpassword values, symbols have been known to cause issues. rpcuser=<<rpc_user_incoming>> rpcpassword=<<rpc_password_outgoing>> rpcport=44444 port=44440 listen=1 daemon=1 server=1 txindex=1 staking=1 b) To save and quit the file, hit [ctrl+x], [Y] and [enter]. Your file is now created and saved. 7) With configuration files in place, we can now start the NAV Coin wallet../navcoin-4.0.5/bin/navcoind -reindex-chainstate & NOTE: you may have to hit enter key to get your command prompt back. 8

9 Wait a couple of minutes, your wallet will now start syncing the blockchain. You can monitor the progress with the following command: (it will output the number of the last block downloaded)./navcoin-4.0.5/bin/navcoin-cli getblockcount Be patient, at first the wallet might respond with an error code. Try again after a few minutes. You will have to wait until this block height matches that of the NAV Coin block explorer. Click the link below to get the current block height of the explorer. You can proceed to the next procedure while your NAV Coin wallet syncs with the blockchain. 9

10 Subchain Core installation After installing the NAV Coin Core on both servers, it is time to install the Subchain Core. The process is the same for both servers. Make sure to change the RPCuser and RPC password in the navajoanonsubchain.conf file and write those down. You will need those later in the process. 1) Ensure you are in your home directory and clone the source code from github. git clone 2) Build the executable from source ( just copy and paste, the make command will have a LOT of output and will take between 5-10 minutes to complete. subchain/src/ mkdir obj chmod 777 obj make -f makefile.unix -j2 3) Briefly start the NAV Coin wallet so that the configuration directory is created../subchain/src/navajoanonsubchaind After a few seconds press ctrl+c to kill this process and get back to the command prompt! 4) Create a configuration file for the subchain.navajoanonsubchain sudo nano navajoanonsubchain.conf 5) Paste the following contents into the navajoanonsubchain.conf file: rpcuser= <<user>> rpcpassword= <<password>> rpcport=33333 port=33330 addnode= addnode= listen=1 daemon=1 server=1 txindex=1 staking=1 o To save and quit the file, hit [ctrl+x], [Y] and [enter]. Your file is now created and saved. 10

11 6) With configuration files in place, we can now start the Subchain wallet../subchain/src/navajoanonsubchaind --daemon NOTE: you may have to hit enter key to get your prompt back. With a couple minutes, your wallet will now start syncing with the blockchain. You can monitor this process with the following command: (it will output the block # in which your copy of the blockchain is on)./subchain/src/navajoanonsubchaind getblockcount * Subchain blockcount on 4 october 2017 Be patient, at first the wallet might respond with an error code. Try again after a few minutes. 11

12 Make sure the NAV Coin and Subchain Blockchains are fully synced before you continue Install NavTech It is time to install NavTech on the incoming and outgoing server. This step is the last step that is equal for both the incoming and outgoing server. Install tools and download source Git, NPM and NodeJS are required for NavTech. First install those onto your incoming and outgoing servers. Install git and npm: sudo apt-get update sudo apt-get install git npm Install nodejs: sudo apt-get install curl curl -sl sudo -E bash - sudo apt-get install -y nodejs node -v The command node -v will show the version of NodeJS installed. Clone NavTech Clone NavTech from the GitHub repository: git clone Now it is time to setup both the Outgoing and Incoming server. All steps until here were the same for both servers. Now it will be different for both servers. 12

13 Setup Incoming Server Make sure you are on the incoming server. In this chapter you only need the incoming server for configuration. Configure default.json Create default.json, the configuration file on the incoming server. navtech/config cp example-incoming.default.json default.json Edit the default.json file : navtech/config sudo nano default.json In the default.json file you will have to make multiple changes: 1. Global.ipAddress: YOUR DEVICE IP 2. Incoming.local.ipAddress: IP OF YOUR INCOMING SERVER 3. Incoming.remote.ipAddress: IP OF YOUR OUTGOING SERVER 4. Incoming.remote.ipAddress: IP OF YOUR 2 nd OUTGOING SERVER a. *(only if you have more than 1 outgoing server, if not delete: { ipaddress : , port : Incoming.minAmount: Set the min amount you want your server to accept 6. Incoming.maxAmount: Set the max amount you want your server to accept 7. Incoming.anonFeePercent: Set the % fee you ask for processing anonymous transactions 8. Incoming.notification Set you want to use to receive notifications 9. Incoming.smtp: Set smtp settings for your 10. Incoming.navCoin.user: RPCuser from the navcoin.conf file 11. Incoming.navCoin.pass: RPCpassword from navcoin.conf file 12. Incoming.navCoin.walletPassphrase: The password you want to use for the wallet 13. Incoming.subChain.user: RPCuser from the navajoanonsubchain.conf file 14. Incoming.subChain.pass: RPCpassword from navavajoanonsubchain.conf file 15. Incoming.subChain.walletPassphrase: The password you want to use for the wallet 16. Incoming.secretOptions.salt: 32 random chars (use to generate: Incoming.secret: This will be generated at a later step and added to the default.json file o To save and quit the file, hit [ctrl+x], [Y] and [enter]. Your file is now created and saved. 13

14 * The default.json file on the incoming server 14

15 Random string generator (You can use any other alternative. Just a 32 character random string is required.) 1. Generate 2 random string characters long 3. Numeric, Uppercase and lowercase letters 4. Click Get Strings 5. Copy the two strings and paste them behind Incoming.secretOptions.salt 6. Make sure the two strings form a 32 char string as in: GyyfyZ12JjZRKuhsr9z5Bf17oGzbcXKn 15

16 Running the incoming setup scripts After editing the default.json configuration file it is time to run the setup scripts. First thing is to clean and install the npm modules, so change directory to the root(navtech) of the project and run these commands: navtech sudo rm -rf node_modules sudo npm cache clean sudo npm install Make the folders for the generated RSA keys to be stored in mkdir keys keys/private keys/public Then run the setup command. If you do not encrypt the wallet, your wallet will now begin to generate a pool of NAV Coin and Subchain addresses to use for transactions. sudo npm run setup If your navcoin wallet was unencrypted and you've set the global encryptedwallet flag to true it will encrypt the wallet with the walletpassphrase you set in the incoming settings file and ask you to restart navcoind. Then run the setup again sudo npm run setup If your subchain wallet was unencrypted and you've set the global encryptedwallet flag to true it will encrypt the wallet with the walletpassphrase you set in the incoming settings file and ask you to restart navajoanonsubchaind. Then run the setup again sudo npm run setup If your navcoin and subchain were already encrypted or they were encrypted using the steps above, your wallet will now begin to generate a pool of NAV Coin and Subchain addresses to use for transactions. You should see status messages appear with wallet addresses. Wait for this process to complete. Error? Look at the next page. After generating the addresses, it should also output the generated secret and let you know that the operation was successful. Please copy the secret, re-open the incoming settings file and paste it as the value for the property secret navtech/config/ sudo nano default.json Add the generated secret key to Incoming.secret: o Incoming.secret: Generated secret 16

17 Error? (Skip if you successfully generated the secret) If no secret is generated or you do not get SUCCESS: everything is configured you probably made a mistake in the default.json configuration. Make sure the RPCusers and RPCpasswords are correct (for NAV Coin Core and Subchain Core) and that the other information is correct. navtech sudo nano default.json After that: rm -rf node_modules sudo npm cache clean sudo npm install rm -rf keys mkdir keys keys/private keys/public sudo npm run setup If everything is configured correct, you should get: STATUS: new holdingaccount address generated: STATUS: generated secret: SUCCESS: everything is configured After generating the addresses, it should also output the generated secret and let you know that the operation was successful. Please copy the secret, re-open the incoming settings file and paste it as the value for the property secret navtech/config/ sudo nano default.json Add the generated secret key to Incoming.secret: Incoming.secret: Generated secret 17

18 Build NavTech After successfully generating the secret it is time to build NavTech: navtech sudo npm run build Forever I recommend using a service called forever js to manage the NavTech server for you. It will restart the application if it were to crash and also consolidate and version any error logs which are produced. Install forever: sudo npm install -g forever Start forever: sudo forever start dist/navtech.js Check forever logs: sudo forever logs 0 The logs which are displayed should simply let you know the server has started. If this is the first server you have setup it will also report it was unable to contact an outgoing server. You can test the server is running by opening your browser and navigating to your server's IP address and port, for example: We use generated unsigned SSL certificates, so proceed past the invalid SSL certificate and you should see a response like: {"status":200,"type":"success","message":"server is running!","servertype":"incoming","anonhash":"429f859a98c6594e7c64351c01c288"} 18

19 Setup Outgoing Server Setting up the outgoing server is much the same process as the incoming server but with some different settings. Make sure you are on the outgoing server. In this chapter you only need the outgoing server for configuration. First determine the amount of NAV Coin you want to have in the NavPool and set the parameter: navtech/src/validators sudo nano outgoing.validation.json Change the NavPool parameter: o navpoolamount.min: CHANGE TO THE MIN AMOUNT YOU WANT FOR NAVPOOL To save and quit the file, hit [ctrl+x], [Y] and [enter]. Your file is now created and saved. On the outgoing server open the config folder and copy the outgoing settings example. navtech/config cp example-outgoing.default.json default.json sudo nano default.json In the default.json file you will have to make multiple changes: 1. Outgoing.local.ipAddress: IP OF YOUR OUTGOING SERVER 2. Outgoing.remote.ipAddress: IP OF YOUR INCOMING SERVER 3. Outgoing.remote.ipAddress: IP OF YOUR 2 nd INCOMING SERVER a. *(only if you have more than 1 INCOMING server, if not delete): 4. Outgoing.minAmount: Same setting as Incoming server 5. Outgoing.maxAmount: Same setting as Incoming server { ipaddress : , port : 3000 } 6. Outgoing.navPoolAmount: The amount of NAV Coin you will keep in the NavPool 7. Outgoing.anonTxFeeAddress: The address you want your TX Fee income to be send to 8. Outgoing.txFeePayoutMin: The min amount of collected TX Fee before sending out 9. Outgoing.notification Set you want to use to receive notifications 10. Outgoing.smtp: Set smtp settings for your 11. Outgoing.navCoin.user: RPCuser from the navcoin.conf file 12. Outgoing.navCoin.pass: RPCpassword from navcoin.conf file 13. Outgoing.navCoin.walletPassphrase: The password you want to use for the wallet 14. Outgoing.subChain.user: RPCuser from the navajoanonsubchain.conf file 15. Outgoing.subChain.pass: RPCpassword from navavajoanonsubchain.conf file 16. Outgoing.subChain.walletPassphrase: The password you want to use for the wallet 17. Outgoing.secret: The secret generated by the incoming server To save and quit the file, hit [ctrl+x], [Y] and [enter]. Your file is now created and saved. 19

20 * The default.json file on the outgoing server 20

21 Running the Outgoing setup scripts After editing the default.json configuration file it is time to run the setup scripts. First thing is to clean and install the npm modules, so change directory to the root(navtech) of the project and run these commands: navtech sudo rm -rf node_modules sudo npm cache clean sudo npm install Make the folders for the generated RSA keys to be stored in mkdir keys keys/private keys/public Then run the setup command. If you do not encrypt the wallet, your wallet will now begin to generate a pool of NAV Coin and Subchain addresses to use for transactions. sudo npm run setup If your navcoin wallet was unencrypted and you've set the global encryptedwallet flag to true it will encrypt the wallet with the walletpassphrase you set in the incoming settings file and ask you to restart navcoind. Then run the setup again sudo npm run setup If your subchain wallet was unencrypted and you've set the global encryptedwallet flag to true it will encrypt the wallet with the walletpassphrase you set in the incoming settings file and ask you to restart navajoanonsubchaind. Then run the setup again sudo npm run setup If your navcoin and subchain were already encrypted or they were encrypted using the steps above, your wallet will now begin to generate a pool of NAV Coin and Subchain addresses to use for transactions. You should see status messages appear with wallet addresses. Wait for this process to complete. Error? Look at the next page. After generating the addresses, it should let you know that the operation was successful. 21

22 Error? (Skip if you successfully generated the addresses) If you get an error you probably made a mistake in the default.json configuration. Make sure the RPCusers and RPCpasswords are correct (for NAV Coin Core and Subchain Core) and that the other information is correct. To edit your default.json: navtech/config sudo nano default.json o To save and quit the file, hit [ctrl+x], [Y] and [enter]. Your file is now created and saved. After that: rm -rf node_modules sudo npm cache clean sudo npm install rm -rf keys mkdir keys keys/private keys/public sudo npm run setup 22

23 Build NavTech Build your version of NavTech: navtech sudo npm run build Forever I recommend using a service called forever js to manage the NavTech server for you. It will restart the application if it were to crash and also consolidate and version any error logs which are produced. Install forever: sudo npm install -g forever Start forever: sudo forever start dist/navtech.js Check forever logs: sudo forever logs 0 The logs which are displayed should simply let you know the server has started. If this is the first server you have setup it will also report it was unable to contact an outgoing server. You can test the server is running by opening your browser and navigating to your server's IP address and port, for example: We use generated unsigned SSL certificates, so proceed past the invalid SSL certificate and you should see a response like: {"status":200,"type":"success","message":"server is running!","servertype":"outgoing","anonhash":"429f859a98c6594e7c64351c01c288"} 23

24 Creating Backup Before you put any NAV Coins and Subchain Coins on the servers, you should make backups. An easy way to make backups is to make use of a FTP Client. Filezilla for example can be used for this ( Through Filezilla you can connect to your Server and easily download files to your computer. 1. Download and install Filezilla 2. Open Filezilla 3. Go to file 4. Go to Site manager 5. Add your servers: 6. Connect 24

25 7. Go to.navcoin4 (for NAV Coin wallet.dat) or.navajoanonsubchain (for Subchain wallet.dat) 8. Copy the wallet.dat (for both NAV Coin and Subchain) to your computer (you can drag & drop) 9. Save the wallet.dat files in a save place. I suggest not on your PC but USB for example. 10. Do this for both the Incoming and Outgoing servers. Label the backups correct. You will have 4 wallet.dat backups: 1. Wallet.dat (Incoming NAV Coin) 2. Wallet.dat (Incoming Subchain coin) 3. Wallet.dat (Outgoing NAV Coin) 4. Wallet.dat (Outgoing Subchain coin) 25

26 Subchain Coin (Incoming) Subchain coins are held on the incoming server in the Subchain Core wallet. When a NavTech transaction comes in, the Subchain coins are used to send encrypted information about the NavTech transaction to the outgoing server. The outgoing server will always return all the Subchain Coins to the incoming server. 1. First, get a Subchain address on the incoming server./subchain/src/navajoanonsubchaind getaccountaddress incomingaccount 2. Send subchain coins to the echoed address split into 1000 SUB transactions. The reason why we split it up is because a wallet can only spend (and receive change from) a transaction once per block. So if we had all our SUB in 1 transaction to start with the server would have trouble processing more than 1 transaction at a time../subchain/src/navajoanonsubchaind sendtoaddress xxxxxxxxxxxxxxxxxxx 3. To check the balance of Subchain coins:./subchain/src/navajoanonsubchaind getbalance To get Subchain coins, ask current operators of NavTech servers. The Subchain coins hold no value. Best is to contact the NAV Coin team (Craig) to receive Subchain coins. You can find him on Slack NAV Coins in the NavPool (Outgoing) The NavPool is used to send NAV Coins from the Outgoing server to the receiver. The NavPool will be refilled with NAV Coins from the Incoming server. 1. Get an account address./navcoin-4.0.5/bin/navcoind-cli getaccountaddress outgoingaccount 2. Send NAV Coins to the address split into smaller (max. 1000) NAV Coin transactions. Send NAV Coins equal to the maximum value of the pool size you specified in the default.json file. The reason why we split it up is because a wallet can only spend (and receive change from) a transaction once per block. So if we had all our NAV Coins in 1 transaction to start with the server would have trouble processing more than 1 transaction at a time. 3. To check the balance of your NAV Coin Core wallet on the outgoing server:./navcoin-4.0.5/bin/navcoind-cli getbalance 26

27 Testing NavTech server cluster Now you have both servers setup, it is time to send some test transactions. Make sure you add the correct IP addresses and port number into your NAV Coin Core wallet and send some small value test transactions through your NavTech servers. 1. Make sure the Global.ipAddress: YOUR DEVICE IP in the default.json file on the incoming server is the IP Address of the device you will use for testing. 2. Open the Core Wallet on your testing device 3. Delete all NavTech servers from your configuration a. Go to Send b. Go to Manage NavTech Server 4. Add your Incoming server to your core wallet 5. Now you can make test transactions through your own NavTech server Cluster. 27

28 How to test the servers? You want to be a 100% sure everything is working perfectly before you make your cluster public. On my computer I had the Core Wallet running to make NavTech Transactions from. I sent the NavTech transactions to my mobile wallet. Some things to consider: Start with small transactions and one at a time Try to send multiple transactions in a short time. Control how the server handles this Send a transaction bigger than the NavPool, this should either be rejected or returned Ask others to make small transactions through your server Control if GET INFO displays the correct information: 28

29 Make the cluster public If you are happy with your configuration and transactions are processing successfully you will want to remove the GLOBAL.maintenance and GLOBAL.allowedIps settings from your config/default.js file so the servers are open for public use. 1. Stop the daemons on your servers (Incoming and outgoing) navtech sudo forever stop 0./subchain/src/navajoanonsubchaind stop./navcoin-4.0.5/bin/navcoin-cli stop 2. Edit the default.json file on your incoming server and delete GLOBAL.maintenance and GLOBAL.allowedIps: navtech/config sudo nano default.json And delete (so everyone is able to use your server for transactions): maintenance : false, allowedips : [{ ipaddress : xxx.xxx.x.x }] 29

30 Starting the servers Outgoing server 1. Start navcoind./navcoin-4.0.5/bin/navcoind --daemon 2. Start Subchain./subchain/src/navajoanonsubchaind --daemon 3. Start Forever navtech sudo forever start dist/navtech.js Incoming server 4. Start navcoind./navcoin-4.0.5/bin/navcoind --daemon 5. Start Subchain./subchain/src/navajoanonsubchaind--daemon 6. Start Forever navtech sudo forever start dist/navtech.js Test if everything is working correct one more time before you announce the server cluster. 30

31 Announce the Server Cluster When everything is ready and tested, it is time to announce the Server Cluster. This way you will be able to collect Transaction (TX) Fee from NavTech transactions done by others through your server. Reddit Reddit ( is a good place to announce your server. Make sure to give the following information: Transaction Fee (%) Min. Transaction size (NAV Coin) Max. Transaction size (NAV Coin) Server IP (only of the incoming server): xxx.xxx.x.x:3000 NavTechServers.com All NavTech Server clusters are listed on Contact colvano on telegram ( or Slack to get your server listed. 31

Contents. Crave Masternode Setup Guides. Single / Multiple Local Masternode(s) Single Masternode using a VPS. Multiple Masternodes using a VPS

Contents. Crave Masternode Setup Guides. Single / Multiple Local Masternode(s) Single Masternode using a VPS. Multiple Masternodes using a VPS Contents Crave Masternode Setup Guides Single / Multiple Local Masternode(s) 1 Requirements...1 2 Preparing Masternodes...1 3 Preparing Controller Wallet...2 4 Masternode Configuration...3 5 Starting Masternodes...3

More information

MASTERNODE Setup Guide

MASTERNODE Setup Guide MASTERNODE Setup Guide Version 1.0 February 2018 Page 1 / 13 Table of Contents Table of Contents... 2 Linux Setup... 3 Prerequisites... 3 Updates and dependencies... 3 Building the wallet... 4 Starting

More information

CazCoin VPS Masternode Setup December 2018

CazCoin VPS Masternode Setup December 2018 Contents 1. Introduction... 3 2. Requirements... 3 3. VPS Preparation... 4 4. Local Wallet Setup... 4 5. Edit Local Configuration Files... 6 6. VPS Setup... 7 7. Starting the Masternode... 10 8. Wallet

More information

CazCoin VPS Masternode Setup May 2018

CazCoin VPS Masternode Setup May 2018 VPS Masternode Setup May 2018 VPS Masternode Setup May 2018 Contents 1. Introduction... 3 2. Requirements... 3 3. Block Rewards?... 4 4. VPS Preparation... 4 5. Local Wallet Setup... 5 6. Edit Local Config

More information

Complete Guide to Setting Up Linda on Ubuntu 16 For Staking

Complete Guide to Setting Up Linda on Ubuntu 16 For Staking Complete Guide to Setting Up Linda on Ubuntu 16 For Staking By Chris T. aka lagwag0n Join Us on Discord: https://discord.gg/8evurqx Table of Contents: 1. Introduction 2. Purchasing a VPS from Vultr 3.

More information

COLD WALLET STEP BY STEP SETUP TUTORIAL FOR BEGINNERS

COLD WALLET STEP BY STEP SETUP TUTORIAL FOR BEGINNERS COLD WALLET STEP BY STEP SETUP TUTORIAL FOR BEGINNERS This tutorial shows the steps required to setup your cold wallet. Let s get started! 1. GETTING VPS SERVER FROM VULTR.COM (UBUNTU 17.10) 2. SYNCHRONIZE

More information

TZC WALLET + HEADLESS WALLET ON LINUX. Local Wallet + PoS Headless Wallet on VPS (Ubuntu 16.04)

TZC WALLET + HEADLESS WALLET ON LINUX. Local Wallet + PoS Headless Wallet on VPS (Ubuntu 16.04) TZC WALLET + HEADLESS WALLET ON LINUX Local Wallet + PoS Headless Wallet on VPS (Ubuntu 16.04) What you need: a - A local computer running under Ubuntu 16.04 b - A remote server (Virtual Private Network,

More information

This guide assumes that you are setting up a masternode for the first time. You will need:

This guide assumes that you are setting up a masternode for the first time. You will need: KRT MN Guide Setting up a masternode requires a basic understanding of Linux and blockchain technology, as well as the ability to follow instructions closely. It also requires regular maintenance and careful

More information

CROWDCOIN MASTERNODE SETUP COLD WALLET ON WINDOWS WITH LINUX VPS

CROWDCOIN MASTERNODE SETUP COLD WALLET ON WINDOWS WITH LINUX VPS CROWDCOIN MASTERNODE SETUP COLD WALLET ON WINDOWS WITH LINUX VPS This tutorial shows the steps required to setup your Crowdcoin Masternode on a Linux server and run your wallet on a Windows operating system

More information

SAROS MasterNode Guide V1.1

SAROS MasterNode Guide V1.1 SAROS MasterNode Guide V1.1 Pre-requisites Local Windows wallet holding at least 1501 SAROS coins Remote VPS Ubuntu 14.04 VPS (in this guide I am using a XS ordered from www.masterhash.us) OVERVIEW This

More information

Rover Coin. Hot Cold Wallet Masternode VPS setup Guide

Rover Coin. Hot Cold Wallet Masternode VPS setup Guide Rover Coin Hot Cold Wallet Masternode VPS setup Guide 2018.03.07 1 Contents 1. Windows cold wallet guide... 3 1.1 Download the latest Rover windows wallet.... 3 1.2 How to make your own Rover address.....

More information

Nyerium Hot Cold Masternode Guide

Nyerium Hot Cold Masternode Guide Nyerium Hot Cold Masternode Guide Overview These are the steps to setup a secure and sager cold node: a masternode on a VPS and a local wallet with your coins in your Windows or Linux wallet hot node.

More information

Masternode Setup Guide

Masternode Setup Guide Masternode Setup Guide This guide will help you to setup a Lizus masternode on an Ubuntu 16.04 64bit Server. Requirements - 10.000.01 LIZ (10.000 LIZ for the initial transaction and 0.1 LIZ for covering

More information

COLD WALLET + MASTERNODE SETUP ON LINUX

COLD WALLET + MASTERNODE SETUP ON LINUX COLD WALLET + MASTERNODE SETUP ON LINUX This tutorial shows the steps required to setup your Magnet masternode on a Linux system while running a local cold wallet (Windows system here). Let s get started!

More information

Anonymity and Privacy Blockchain

Anonymity and Privacy Blockchain Anonymity and Privacy Blockchain BitcoinZero is an improved version of Bitcoin with addi onal features including Zerocoin protocol, faster block me, and masternodes (BZnodes) MASTERNODE SETUP GUIDE SOCIAL

More information

Masternode Setup Guide Local Wallet with VPS Server

Masternode Setup Guide Local Wallet with VPS Server Masternode Setup Guide Local Wallet with VPS Server What you will need: 1) Local computer windows 7-10 2) Remote server VPS [vultr.com] 3) PuTTY to configure and setup VPS 4) 10,000 PHR If you would like

More information

Wallet Installation Guide for Staking on Raspberry PI

Wallet Installation Guide for Staking on Raspberry PI Wallet Installation Guide for Staking on Raspberry PI V2.1 November 2018 CONTENTS 01. Version History... 13 02. Introduction... 3 03. Prerequisites... 13 04. Installation Steps... 6 05. Add an address

More information

Anonymity and Privacy Blockchain

Anonymity and Privacy Blockchain Anonymity and Privacy Blockchain BitcoinZero is an improved version of Bitcoin with addi onal features including Zerocoin protocol, faster block me, and masternodes (BZnodes) MASTERNODE SETUP GUIDE SOCIAL

More information

Masternode Setup Guide

Masternode Setup Guide Masternode Setup Guide What this guide is This guide is aimed at anyone who wants to run a Reliance masternode on an Ubuntu 16.04 VPS. What this guide is not A tutorial for linux. What I mean by that,

More information

Beetle Coin Masternodes Guide

Beetle Coin Masternodes Guide Beetle Coin Masternodes Guide Beetles, Indomitable Creatures. What you need: 1-More than 50,000 BEET. 2-One computer with Beetle-qt wallet installed.(put more than 50,000 BEET in this wallet) 3-One VPS.

More information

Windows cold wallet managing Linux VPS connected Masternode

Windows cold wallet managing Linux VPS connected Masternode Discount Coin Masternodes How to setup a Discount Coin Masternode Single and Multiple masternodes Windows cold wallet managing Linux VPS connected Masternode Version 1.0.2 The DiscountCoin Core Team February

More information

WHAT YOU WILL NEED FOR THIS GUIDE:

WHAT YOU WILL NEED FOR THIS GUIDE: WHAT YOU WILL NEED FOR THIS GUIDE: 1. Local computer with Windows or Linux. 2. Remote server VPS [This guide uses digitaloceans.com but any provider will work] 3. PuTTY to configure and setup the VPS 4.

More information

MASTERNODE SETUP GUIDE

MASTERNODE SETUP GUIDE MASTERNODE SETUP GUIDE PREREQUISITES: -10,001 XCZM -A main computer with local wallet -Ubuntu 16.0.4 VPS server from vultr or any other reputable company. Open you Xavander Coin local wallet 1) Using the

More information

BitcoinMonster Masternode Linux VPS Tutorial - Vultr VPS Created By : Samshak Donet Mon: MKX8PFz1uvBkwNDTXtUuj6KinudhsKZh1K

BitcoinMonster Masternode Linux VPS Tutorial - Vultr VPS Created By : Samshak Donet Mon: MKX8PFz1uvBkwNDTXtUuj6KinudhsKZh1K BitcoinMonster Masternode Linux VPS Tutorial - Vultr VPS Created By : Samshak Donet Mon: MKX8PFz1uvBkwNDTXtUuj6KinudhsKZh1K Step 1 Download, install and sync latest BitcoinMonster Windows s wallet on both

More information

Masternode Guide #1. Single masternode on Linux VPS (Ubuntu)+ control wallet on local PC (Windows)

Masternode Guide #1. Single masternode on Linux VPS (Ubuntu)+ control wallet on local PC (Windows) Masternode Guide #1 Single masternode on Linux VPS (Ubuntu)+ control wallet on local PC (Windows) Prerequisites: a - A remote server (Virtual Private Server, VPS) which will be our masternode wallet. b

More information

KINGSTON COIN VPS MASTERNODE SETUP GUIDE

KINGSTON COIN VPS MASTERNODE SETUP GUIDE KINGSTON COIN VPS MASTERNODE SETUP GUIDE UBUNTU 16.04 x64 ** THIS GUIDE ASSUMES YOU HAVE PURCHASED A VPS THROUGH A SERVICE LIKE DIGITALOCEAN. COM OR VULTR.COM AND HAVE CONNECTED TO YOUR VPS THROUGH SSH/TERMINAL**

More information

Dixicoin (DXC) Masternode Guide for VPS

Dixicoin (DXC) Masternode Guide for VPS Dixicoin (DXC) Masternode Guide for VPS Table of Contents Requirements 2 VPS Set-up 2 Create a MasterNode Address (ALIAS) & send collateral 4 MasterNode private key & Index ID 5 Edit Configuration files

More information

Setting up a Chaincoin Masternode

Setting up a Chaincoin Masternode Setting up a Chaincoin Masternode Introduction So you want to set up your own Chaincoin Masternode? You ve come to the right place! These instructions are correct as of April, 2017, and relate to version

More information

SmartCash SmartNode Setup Guide V1.2 Windows 10 13/01/2018 By (Jazz) yoyomonkey Page 1

SmartCash SmartNode Setup Guide V1.2 Windows 10 13/01/2018 By (Jazz) yoyomonkey Page 1 SmartCash SmartNode Setup Guide v1.2 Date: Introduction Welcome to this step by step guide that will take you through the process of creating your own SmartCash SmartNode. This guide is aimed at the casual

More information

SmartCash SmartNode Setup Guide v1.2. Windows 10. Date: 13/01/2018. By (Jazz) yoyomonkey

SmartCash SmartNode Setup Guide v1.2. Windows 10. Date: 13/01/2018. By (Jazz) yoyomonkey SmartCash SmartNode Setup Guide v1.2 Date: Introduction Welcome to this step by step guide that will take you through the process of creating your own SmartCash SmartNode. This guide is aimed at the casual

More information

VPS SETUP: What is a VPS? A VPS is a cloud server, running on a virtual machine. You can t run a masternode on your computer itself.

VPS SETUP: What is a VPS? A VPS is a cloud server, running on a virtual machine. You can t run a masternode on your computer itself. Our guide makes it easy to set up your own masternode! BEFORE YOU BEGIN, YOU WILL NEED: 1. 1,000 SUPPO s 2. The latest SuppoCoin wallet, which can always be found here: https://www.suppocoin.io 3. Two

More information

Masternode&Sentinel Setup Guide

Masternode&Sentinel Setup Guide Masternode&Sentinel Setup Guide In order to start up MasterNode and Sentinel, the user must possess at least 1000 PSC You can use any VPS Server (10 GB HDD/1 CPU/512MB Memory/IPv4) or better. As an example,

More information

SCRIV NETWORK COLD WALLET MASTERNODE SETUP GUIDE DETAILED

SCRIV NETWORK COLD WALLET MASTERNODE SETUP GUIDE DETAILED SCRIV NETWORK MASTERNODE SETUP GUIDE COLD WALLET DETAILED March, 2018 Table of Contents Requirements for running SCRIV cold wallet masternode on Linux VPS: 3 Setup Linux-based VPS... 3 1. Install SCRIV

More information

SUB1X Masternode Setup Guide: LINUX Version

SUB1X Masternode Setup Guide: LINUX Version SUB1X Masternode Setup Guide: LINUX Version What you will need for this guide: 1) Local computer with Windows, MacOS or Linux. 2) Remote server VPS [Vultr.com or AWS for instance] 3) PuTTY to configure

More information

Citizenship Coin. Installation Instructions

Citizenship Coin. Installation Instructions Citizenship Coin Installation Instructions Please download and install our wallet software which works in Windows (32 bit, 64 bit), MacosX (64 bit) and Linux (64 bit). Once you run the software, it will

More information

Relarium (RLM) Masternode Guide for VPS

Relarium (RLM) Masternode Guide for VPS Relarium (RLM) Masternode Guide for VPS Table of Contents Requirements 2 VPS Set-up 2 Create a MasterNode Address (ALIAS) & send collateral 4 MasterNode private key & Index ID 5 Edit Configuration files

More information

LINUX VPS GUIDE. Pre-requisites: (this guide assumes you are using windows)

LINUX VPS GUIDE. Pre-requisites: (this guide assumes you are using windows) LINUX VPS GUIDE Pre-requisites: (this guide assumes you are using windows) Philscurrency Wallet Download PHILS wallet if you don t have already from the link below https://github.com/philscurrency/philscurrency/releases/download/v1.2/phils

More information

Crave Setup Guide v1.07

Crave Setup Guide v1.07 Crave Setup Guide v1.07 Contents Single / Multiple Local Masternode(s) 1 Requirements...1 2 Preparing Masternodes...1 3 Preparing Controller Wallet...2 4 Masternode Configuration...3 5 Starting Masternodes...3

More information

BitcoinGenX Masternode Setup Tutorial

BitcoinGenX Masternode Setup Tutorial BitcoinGenX Masternode Setup Tutorial BEFORE YOU CONTINUE WITH THE FOLLOWING TUTORIAL PLEASE MAKE SURE YOU HAVE AN UBNUTU 16.04 X64 LINUX SERVER WHICH YOU CAN BUY FROM DIGITAL OCEAN OR VULTR OTHER PLACES

More information

Master Node Setup Guide

Master Node Setup Guide Introduction Welcome to this step by step guide that will take you through the process of creating your own Masternode. This guide is aimed at the casual Windows 10 PC user who has purchased Satoshi Coin

More information

LOCAL WALLET (COLD WALLET):

LOCAL WALLET (COLD WALLET): This tutorial will teach you how to create a masternode with a "cold/hot" setup. The whole process is as follows. LOCAL WALLET (COLD WALLET): Visit TRAID platform s official repository on GitHub and download

More information

What you need: 5001 AEG. Computer with wallet installed. Make sure the wallet contains the Masternode Collateral of at least 5001 AEGEUS

What you need: 5001 AEG. Computer with wallet installed. Make sure the wallet contains the Masternode Collateral of at least 5001 AEGEUS What you need: 5001 AEG Computer with wallet installed. Make sure the wallet contains the Masternode Collateral of at least 5001 AEGEUS Download Windows Wallet Here Step 1: Install AEGEUS wallet on Windows

More information

SmartCash SmartNode SCRIPT Setup Guide v2.2. Windows 10. Date: 20/02/2018. By (Jazz) yoyomonkey

SmartCash SmartNode SCRIPT Setup Guide v2.2. Windows 10. Date: 20/02/2018. By (Jazz) yoyomonkey SmartCash SmartNode SCRIPT Setup Guide v2.2 Date: Introduction Welcome to this step by step guide that will take you through the process of creating your own SmartCash SmartNode. This guide is aimed at

More information

MarketC - Masternode Setup Guide

MarketC - Masternode Setup Guide MarketC - Masternode Setup Guide Preface In this guide we will be focusing on setting up a masternode for Marketc (CMK). This guide will focus on a typical "hot node" / "cold wallet" scenario. The "hot

More information

50,000 THC (have an additional.01 THC available to cover transaction costs)

50,000 THC (have an additional.01 THC available to cover transaction costs) Basic Requirements 50,000 THC (have an additional.01 THC available to cover transaction costs) Local Computer with THC wallet installed Download a THC wallet for your operating system at hempcoin.org.

More information

Masternode Setup in VPS server

Masternode Setup in VPS server Masternode Setup in VPS server In order to start up MasterNode and Sentinel, the user must possess at least 10000 PSC You can use any VPS Server (10 GB HDD/1 CPU/512MB Memory) or better. As an example,

More information

Masternode Setup Guide

Masternode Setup Guide Masternode Setup Guide Preface The following guide to set up a CREDITS Masternode is geared towards beginners with no experience of servers nor of CREDITS. You can skip certain parts if you re already

More information

Controller-Cold-Setup

Controller-Cold-Setup Controller-Cold-Setup This is the advised Method to setup your Masternodes. The wallet containing the coins does not have to be exposed and can run on your local computer. It does not have to run all the

More information

TangeloHub Documentation

TangeloHub Documentation TangeloHub Documentation Release None Kitware, Inc. September 21, 2015 Contents 1 User s Guide 3 1.1 Managing Data.............................................. 3 1.2 Running an Analysis...........................................

More information

AEGEUS Official Aegeus FAQ

AEGEUS Official Aegeus FAQ AEGEUS Official Aegeus FAQ Written and rights reserved by the Aegeus Team September 2018 1 Contents Wallets Q1: How do I download the Aegeus wallet? Q2: How do I backup my wallet? Q3: How often should

More information

Official Aegeus FAQ s

Official Aegeus FAQ s Official Aegeus FAQ s Wallets Q1: How do I download the Aegeus wallet? Q2: How do I backup my wallet? Q3: How often should I backup my wallet? Q4: How do I encrypt my wallet? Q5: How do I unlock my wallet?

More information

DogeCash Masternode Setup Guide Version 1.2 (Ubuntu 16.04)

DogeCash Masternode Setup Guide Version 1.2 (Ubuntu 16.04) DogeCash Masternode Setup Guide Version 1.2 (Ubuntu 16.04) This guide will assist you in setting up a DogeCash Masternode on a Linux Server running Ubuntu 16.04. (Use at your own risk) If you require further

More information

THE UNBREAKABLE CODE. NAVTECH WHITEPAPER 2016 BETA RELEASE v0.9

THE UNBREAKABLE CODE. NAVTECH WHITEPAPER 2016 BETA RELEASE v0.9 THE UNBREAKABLE CODE TECH WHITEPAPER 2016 TECH WHITEPAPER 2016 INDEX Executive Summary 3 Introduction 4 Problem Definition 5 High Level Solution 6 Solution Details Technologies Used 7 System Overview 7

More information

Masternode Guide #1. Single masternode on Linux VPS (Ubuntu)+ Control wallet on local PC (Windows) (VPS installation with script :-) )

Masternode Guide #1. Single masternode on Linux VPS (Ubuntu)+ Control wallet on local PC (Windows) (VPS installation with script :-) ) Masternode Guide #1 Single masternode on Linux VPS (Ubuntu)+ Control wallet on local PC (Windows) (VPS installation with script :-) ) Prerequisites: a - A remote server (Virtual Private Server, VPS) which

More information

PiranaJS installation guide

PiranaJS installation guide PiranaJS installation guide Ron Keizer, January 2015 Introduction PiranaJS is the web-based version of Pirana, a workbench for pharmacometricians aimed at facilitating the use of NONMEM, PsN, R/Xpose,

More information

Rabbit Linux Masternode with Windows Cold Wallet

Rabbit Linux Masternode with Windows Cold Wallet Rabbit Linux Masternode with Windows Cold Wallet This is the condensed version of the video showing how to install and set up a Linux VPS with Windows cold wallet setup for a Rabbit masternode. If you

More information

DigiByte Integration Guide

DigiByte Integration Guide DigiByte Integration Guide V1.1 www.promotedgb.com What are the standard ports for DigiByte integration? DigiByte uses the following ports: RPC Port: 14022 P2P Port: 12024 Both are TCP We recommend that

More information

Aion Network. Owner s Manual. The Aion Foundation April User s Manual

Aion Network. Owner s Manual. The Aion Foundation April User s Manual Aion Network Owner s Manual The Aion Foundation April 2018 User s Manual User s Manual Aion Owner s Manual Table of Contents A. General Information 2 1.1 Aion Overview 2 1.2 AION Kilimanjaro Release 2

More information

Renos Local Wallet Masternode Setup

Renos Local Wallet Masternode Setup Renos Local Wallet Masternode Setup There are a variety of methods to set up a Masternode. They are of varying difficulty to set up and offer different levels of security. This tutorial details the set

More information

Flex Linux Masternode with Windows Cold Wallet

Flex Linux Masternode with Windows Cold Wallet Flex Linux Masternode with Windows Cold Wallet This is the condensed version of the video showing how to install and set up a Linux VPS with local cold wallet setup for a Flexinodes masternode. If you

More information

TUTORIAL v /07/2017 How to install a TOR Node for the decentralized BitcoinZ Blockchain Network?

TUTORIAL v /07/2017 How to install a TOR Node for the decentralized BitcoinZ Blockchain Network? TUTORIAL v 1.41 12/07/2017 How to install a TOR Node for the decentralized BitcoinZ Blockchain Network? 1. Install Ubuntu v17.10 Download latest Ubuntu installation file from https://www.ubuntu.com/download/desktop

More information

MeshCentral 2. Installer s Guide. Version July 31, 2018 Ylian Saint-Hilaire

MeshCentral 2. Installer s Guide. Version July 31, 2018 Ylian Saint-Hilaire MeshCentral 2 MeshCentral 2 Installer s Guide Version 0.0.4 July 31, 2018 Ylian Saint-Hilaire Table of Contents 1. Abstract... 1 2. Amazon Linux 2... 1 2.1 Getting the AWS instance setup... 1 2.2 Installing

More information

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version...

Contents. Note: pay attention to where you are. Note: Plaintext version. Note: pay attention to where you are... 1 Note: Plaintext version... Contents Note: pay attention to where you are........................................... 1 Note: Plaintext version................................................... 1 Hello World of the Bash shell 2 Accessing

More information

Convio Data Sync Connector 3 Installation Guide

Convio Data Sync Connector 3 Installation Guide Convio Data Sync Connector 3 Installation Guide Convio Connector Installation Instructions.doc 1 INSTALLATION Installation Prerequisites... 3 Technical Requirements... 3 Installing the Pervasive Data Integrator...

More information

(Ubuntu 16.04) This guide will assist you in setting up an Aegeus Masternode on a Linux Server running Ubuntu (use at your own risk).

(Ubuntu 16.04) This guide will assist you in setting up an Aegeus Masternode on a Linux Server running Ubuntu (use at your own risk). AEGEUS Aegeus Masternode VPS Setup Guide (Ubuntu 16.04) This guide will assist you in setting up an Aegeus Masternode on a Linux Server running Ubuntu 16.04 (use at your own risk). If you require further

More information

Setting up your own private VPN using a cheap VPS server

Setting up your own private VPN using a cheap VPS server Setting up your own private VPN using a cheap VPS server In this example I will show you how easy it is to setup your very own private VPN. This is the best possible solution for everyone. Yes, you may

More information

Infoblox Kubernetes1.0.0 IPAM Plugin

Infoblox Kubernetes1.0.0 IPAM Plugin 2h DEPLOYMENT GUIDE Infoblox Kubernetes1.0.0 IPAM Plugin NIOS version 8.X August 2018 2018 Infoblox Inc. All rights reserved. Infoblox Kubernetes 1.0.0 IPAM Deployment Guide August 2018 Page 1 of 18 Overview...

More information

Adafruit WebIDE. Created by Tyler Cooper. Last updated on :29:47 PM UTC

Adafruit WebIDE. Created by Tyler Cooper. Last updated on :29:47 PM UTC Adafruit WebIDE Created by Tyler Cooper Last updated on 2018-03-12 08:29:47 PM UTC Guide Contents Guide Contents Overview Installation Easy installation: Manual Installation: Uninstallation: Getting Started

More information

XLink Kai Raspberry Pi Beginners Tutorial

XLink Kai Raspberry Pi Beginners Tutorial XLink-Kai-Raspberry-Pi-Beginners-Tutorial.md XLink Kai Raspberry Pi Beginners Tutorial Hi! This tutorial will guide you through setting up XLink Kai on a Raspberry Pi to play multiplayer system link Xbox

More information

Intellicus Cluster and Load Balancing- Linux. Version: 18.1

Intellicus Cluster and Load Balancing- Linux. Version: 18.1 Intellicus Cluster and Load Balancing- Linux Version: 18.1 1 Copyright 2018 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not

More information

STRATIS MASTERNODE. Windows Installation Guide

STRATIS MASTERNODE. Windows Installation Guide STRATIS MASTERNODE Windows Installation Guide Table of Contents 1. Introduction... 4 2. Pre-Requisites... 5 i..net Core 2.0... 5 i. Downloading the installer... 5 ii. Run the.net Core SDK Installer...

More information

Installing PHP on Windows 10 Bash and Starting a Local Server

Installing PHP on Windows 10 Bash and Starting a Local Server Installing PHP on Windows 10 Bash and Starting a Local Server Bash on Ubuntu/Windows is a way to use a command line to run all kinds of programs (including git!). But we ll want a Bash terminal to run

More information

Software Installation Manual

Software Installation Manual Software Installation Manual LEMA Course Scheduling System Team 12 Name Primary Role Secondary Role David Wiggins Project Manager Developer Aakash Shah Prototyper Developer Kushalpreet Kaur Developer Developer

More information

Appliance Guide. Version 1.0

Appliance Guide. Version 1.0 Appliance Guide Version 1.0 Contents Contents 1 Revision history 2 Getting Started 3 Getting to Know the R7-3000/5000/5000x 5 Getting to Know the R7-1000 6 Setting Up the Appliance 7 Logging in to the

More information

RETROPIE INSTALLATION GUIDE

RETROPIE INSTALLATION GUIDE RETROPIE INSTALLATION GUIDE CONTENTS THE FOLLOWING GUIDE WILL COVER THE INSTALLATION, SETUP AND CONFIGURATION OF THE RASPBERRY PI, RASPBIAN OS AND RETROPIE Author: http://rpiarcadebuild.wordpress.com/

More information

Setting up VPS on Ovh public cloud and installing lamp server on Ubuntu instance

Setting up VPS on Ovh public cloud and installing lamp server on Ubuntu instance Setting up VPS on Ovh public cloud and installing lamp server on Ubuntu instance What is OVH Public Cloud Public Cloud Instances provides a choice of two types of virtual machines: the RAM instances are

More information

KickSoccer Coin Masternode Setup Guide

KickSoccer Coin Masternode Setup Guide KickSoccer Coin Masternode Setup Guide Contents... 1 Introduction... 1 First the basic requirements... 1 Configuration... 2 VPS Remote wallet install... 3 Config file configuration... 4 Start your masternode...

More information

The Python Mini-Degree Development Environment Guide

The Python Mini-Degree Development Environment Guide The Python Mini-Degree Development Environment Guide By Zenva Welcome! We are happy to welcome you to the premiere Python development program available on the web The Python Mini-Degree by Zenva. This

More information

Salesforce DX Setup Guide

Salesforce DX Setup Guide Salesforce DX Setup Guide Version 42.0, Spring 18 @salesforcedocs Last updated: April 24, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

USING NGC WITH GOOGLE CLOUD PLATFORM

USING NGC WITH GOOGLE CLOUD PLATFORM USING NGC WITH GOOGLE CLOUD PLATFORM DU-08962-001 _v02 April 2018 Setup Guide TABLE OF CONTENTS Chapter 1. Introduction to... 1 Chapter 2. Deploying an NVIDIA GPU Cloud Image from the GCP Console...3 2.1.

More information

Server guides for the GIRAF project

Server guides for the GIRAF project Server guides for the GIRAF project A joint guide produced by SW611 & SW616 Aalborg University Contents 1 Accessing the GIRAF servers (SW611)........................... 3 2 Using Docker (SW611)..........................................

More information

Cold Masternode Guide

Cold Masternode Guide Cold Masternode Guide Rev. 3 01/25/2018 Overview While it is possible to set up a hot node in which the masternode stores the 1000 CBS collateral, it is more secure and safer to set up a cold node in which

More information

Communication protocols and services

Communication protocols and services This chapter describes various protocols and that may be enabled on Modberry. SSH Connection SSH service is started up on boot and already preinstalled and configured. You may access your device through

More information

VMware AirWatch Content Gateway for Linux. VMware Workspace ONE UEM 1811 Unified Access Gateway

VMware AirWatch Content Gateway for Linux. VMware Workspace ONE UEM 1811 Unified Access Gateway VMware AirWatch Content Gateway for Linux VMware Workspace ONE UEM 1811 Unified Access Gateway You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Working with GIT. Florido Paganelli Lund University MNXB Florido Paganelli MNXB Working with git 1/47

Working with GIT. Florido Paganelli Lund University MNXB Florido Paganelli MNXB Working with git 1/47 Working with GIT MNXB01 2017 Florido Paganelli Lund University florido.paganelli@hep.lu.se Florido Paganelli MNXB01-2017 - Working with git 1/47 Required Software Git - a free and open source distributed

More information

MSC-Tools Documentation

MSC-Tools Documentation MSC-Tools Documentation Release.12 Adam Chamely May 07, 2014 Contents i ii Contents: Contents 1 2 Contents CHAPTER 1 Introduction Welcome to the world of Mastercoin. This guide will walk you through the

More information

GIT. A free and open source distributed version control system. User Guide. January, Department of Computer Science and Engineering

GIT. A free and open source distributed version control system. User Guide. January, Department of Computer Science and Engineering GIT A free and open source distributed version control system User Guide January, 2018 Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Table of Contents What is

More information

Deploy the ExtraHop Discover Appliance in Azure

Deploy the ExtraHop Discover Appliance in Azure Deploy the ExtraHop Discover Appliance in Azure Published: 2018-04-20 The following procedures explain how to deploy an ExtraHop Discover virtual appliance in a Microsoft Azure environment. You must have

More information

Install Guides. Automated Compiler Cold Node (Linux VPS) Absolute. Proof of View

Install Guides. Automated Compiler Cold Node (Linux VPS) Absolute. Proof of View Install Guides Automated Compiler Cold Node (Linux VPS) Absolute. Proof of View Automated Compiler Cold Node Masternode - Linux VPS Cold Node Masternode A Masternode runs on another computer (VPS) which

More information

Software Development I

Software Development I 6.148 Software Development I Two things How to write code for web apps. How to collaborate and keep track of your work. A text editor A text editor A text editor Anything that you re used to using Even

More information

Masternode Guide Version 1.0.4

Masternode Guide Version 1.0.4 Thunderstake Coin Version 1.0.4 Thunderstake Team 1 P age Welcome to the Thunderstake The information contained in this guide will help you to set up your very own TSC masternode. If you feel like you

More information

Booting a Galaxy Instance

Booting a Galaxy Instance Booting a Galaxy Instance Create Security Groups First time Only Create Security Group for Galaxy Name the group galaxy Click Manage Rules for galaxy Click Add Rule Choose HTTPS and Click Add Repeat Security

More information

Salesforce DX Setup Guide

Salesforce DX Setup Guide Salesforce DX Setup Guide Version 44.0, Winter 19 @salesforcedocs Last updated: September 6, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of salesforce.com,

More information

Administration Dashboard Installation Guide SQream Technologies

Administration Dashboard Installation Guide SQream Technologies Administration Dashboard Installation Guide 1.1.0 SQream Technologies 2018-08-16 Table of Contents Overview................................................................................... 1 1. Prerequisites.............................................................................

More information

Installing Design Room ONE

Installing Design Room ONE Installing Design Room ONE Design Room ONE consists of two components: 1. The Design Room ONE web server This is a Node JS server which uses a Mongo database. 2. The Design Room ONE Integration plugin

More information

CUSTOMER CONTROL PANEL... 2 DASHBOARD... 3 HOSTING &

CUSTOMER CONTROL PANEL... 2 DASHBOARD... 3 HOSTING & Table of Contents CUSTOMER CONTROL PANEL... 2 LOGGING IN... 2 RESET YOUR PASSWORD... 2 DASHBOARD... 3 HOSTING & EMAIL... 4 WEB FORWARDING... 4 WEBSITE... 5 Usage... 5 Subdomains... 5 SSH Access... 6 File

More information

R- installation and adminstration under Linux for dummie

R- installation and adminstration under Linux for dummie R- installation and adminstration under Linux for dummies University of British Columbia Nov 8, 2012 Outline 1. Basic introduction of Linux Why Linux (department servers)? Some terminology Tools for windows

More information

2 Installing the Software

2 Installing the Software INSTALLING 19 2 Installing the Software 2.1 Installation Remember the hour or two of slogging through software installation I promised (or warned) you about in the introduction? Well, it s here. Unless

More information

Online Backup Client User Manual

Online Backup Client User Manual Online Backup Client User Manual Software version 3.21 For Linux distributions October 2010 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have

More information

Setting up my Dev Environment ECS 030

Setting up my Dev Environment ECS 030 Setting up my Dev Environment ECS 030 1 Command for SSHing into a CSIF Machine If you already have a terminal and already have a working ssh program (That is, you type ssh into the terminal and it doesn

More information