0
I want to install a NXT wallet client/server on my ubuntu server so i can access it from my website. Where can i find instructions for this? And is there a way to change the port # for nxt? currently it 7876.
0
I want to install a NXT wallet client/server on my ubuntu server so i can access it from my website. Where can i find instructions for this? And is there a way to change the port # for nxt? currently it 7876.
3
Make sure Java 7 is installed on your Ubuntu Server
sudo apt-get update && sudo apt-get install openjdk-7-jre nano zipDownload the latest NRS release and verify the hash sum, example:
wget https://bitbucket.org/JeanLucPicard/nxt/downloads/nxt-client-1.1.6.zip
sha256sum nxt-client-1.1.6.zip
Compare with valid hash found on https://nxtforum.org/nrs-releases/nrs-v1-1-6/
unzip nxt-client-1.1.6.zip
cd nxtTo change NXT's properties (such as port), edit nxt-default.properties
nano conf/nxt-default.properties (CTRL+O to save, CTRL+X to quit.)Launch NXT
./run.sh and access via browser, ip:xxxx
can i edit html template / css files? i want to add in my own on screen keyboard to increase security. – Patoshi パトシ – 2014-07-10T15:06:29.463
also how would you update this when a newer version comes out. – Patoshi パトシ – 2014-07-10T15:08:05.147
1
You may edit any file as you wish. When a newer version comes out, simply do the same again but replace 1.1.6 with the latest version. There's also a "Nxt Kit", which enables an easy way to deploy/update NXT on any number of your VPS or Dedicated Servers.
– osimon – 2014-07-10T20:56:47.190