Github repo for setting up a node

I just realized that I still have the cloned files from jadedjack's repo, so I just made a new repo under my account and pushed the files. It should work just as his did. the only change I made was to the repo url in the git clone step. Enjoy!

[url=https://github.com/Stoner19/Nem-Installers-master]https://github.com/Stoner19/Nem-Installers-master

Worked!

Here the steps I did on my Ubuntu (Amazon EC2 - free for one year!):

<br />##################################<br /># Create your own Amazon EC2 VPS #<br />##################################<br /><br />Tutorial: http://bit.do/awsnode<br /><br /><br />##################################<br /># Connect to your VPS with Putty #<br />##################################<br /><br />Tutorial: http://bit.do/puttyamazon<br /><br /><br />############################################<br /># Install NEM&#039;s NCC and NIS on your Ubuntu #<br />############################################<br /><br />sudo apt-get install git<br /><br />git clone https://github.com/Stoner19/Nem-Installers-master.git<br /><br />cd Nem-Installers-master/<br /><br />chmod +x ./install_nem.sh<br />chmod +x ./ubuntu_install_nem_tools.sh<br /><br />./ubuntu_install_nem_tools.sh<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |--&gt; create swap? yes (take some seconds...)<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |--&gt; install oracle java 8? yes (OK, YES<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |--&gt; install NTP? yes<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |--&gt; install failban2? yes<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |--&gt; install usefull programs? yes<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |--&gt; yes, yes, yes<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />./install_nem.sh<br /><br /><br />#####################<br /># Start NIS nor NCC #<br />#####################<br /><br />sudo /etc/init.d/nis start<br />sudo /etc/init.d/ncc start<br /><br /><br />###################<br /># Stop NIS or NCC #<br />###################<br /><br />sudo /etc/init.d/nis stop<br />sudo /etc/init.d/ncc stop<br /><br /><br />#############################################################<br /># Set the maximum numbers of harvesters on your public node #<br />#############################################################<br /><br />sudo nano /etc/nem/nis/config-user.properties<br /><br /># Maximum number of unlocked accounts. Meaning: maximum number of accounts that are allowed to use this NIS for harvesting<br /># Keep the value within a reasonable range, a too large value an cause problems for all harvesting accounts.<br />nis.unlockedLimit = 10<br /> <br /># Account addresses that are allowed to use this NIS for harvesting (pipe-separated) (no spaces and&nbsp; no -)<br /># Leave this empty, if you don&#039;t want to set any restrictions.<br />nis.allowedHarvesterAddresses = <br /><br /><br />#############################################################<br /># Important for Amazon&#039;s EC2 VPS with 1 GB RAM: REDUCE RAM! #<br />#############################################################<br /><br />sudo nano /etc/init.d/nis<br /><br />Change the line export MAXRAM=1G to MAXRAM=768M<br /><br /><br />##################<br /># other commands #<br />##################<br /><br />Show up running processes in Ubuntu: htop<br />Get admin privileges: sudo su<br />Check infos about your node: http://your.public.IP:7890/node/info<br />