Welcome, Guest. Please login or register.

Author Topic: [Raspberry Pi] Latest NXT-Client and english tutorial (UPDATE 0.6.1 works)  (Read 6557 times)

0 Members and 1 Guest are viewing this topic.

Offline ahcsam

  • Fresh Nxter
  • *
  • Posts: 16
    • View Profile
STATUS: 0.6.1 works (see changelog on bottom)


Hi there!  :)

i read the topic about Raspberry Pi at https://109.201.133.195/index.php?topic=345619.7840 and i hear about the NXT network need many more Nodes and the cost effectiv way for all is to use a Raspberry Pi with minimal power consumption.

this is a short tutorial how to use your Raspi for NXT forging as a node (the client software starts automatic on boot and you will be able to administrate it with putty or from remote desktop from a windows pc)

Let me explain this with an example configuration for this tutorial: windows pc (192.168.1.20), raspberry (192.168.1.10), router (192.168.1.1)


1. Basic Raspbian install guide

1.1 download and install Raspbian

first download Raspbian image and diskimager for windows. install image on sdcard and boot from the sdcard with your raspberry. If you know the dhcp ip address of the raspberry (look into your router or do a ip scan) you can use the tool Putty to connect to your raspberry with a command line ssl connection. you can connect to your raspi at your raspberry dhcp ip address on port 22 and log in as "pi" with password "raspberry". After log in, type sudo raspi-config to configure the basic settings (expand filesystem and change your password, set language, keyboard layout, timezone and a hostname like "rpi"). If you dont know the dhcp ip address of your raspberry connect a monitor to the raspberry and the config menu appears too. Reboot. Now the system is running.


1.2 update the system

reconnect with putty and type the following commands (you can copy the commands from here and paste it into putty with a right click):

Code: [Select]
sudo apt-get update&&sudo apt-get dist-upgrade

1.3 edit IP configuration

standard IP comes with DHCP and check it with ifconfig command on bash. to configure a STATIC IP type the following commands:

Code: [Select]
sudo nano /etc/network/interfaces and press enter

Change the following entry from:
Code: [Select]
iface eth0 inet dhcp
Change it to:
Code: [Select]
iface eth0 inet static
address 192.168.1.10
netmask 255.255.255.0
gateway 192.168.1.1
network 192.168.1.0
broadcast 192.168.1.255

Press CTRL and O at the same time and than ENTER to save, Press CTRL and X together to exit.


2. router/firewall port forwarding

make sure you forward the port 7874 tcp on the router to the ip your raspberry has (192.168.1.10)


3. Install NXT Client (step by step installation from developer mirror and the client use build in raspbian java)
Alternatively to my step by step guide, you can use davethetrousers RaspNXT standalone bundle from his mirror with nxt nodes auto update script. Possibly you can enhance that with some steps from this guide


3.1 download, verify and unzip the client

download the NRS client (blockchain files not included):

Code: [Select]
wget http://download.nxtcrypto.org/nxt-client-0.6.1.zip
you can verify the SHA-256 checksum to prevent a installation of malicious client software:

Code: [Select]
sha256sum nxt-client-0.6.1.zip
the checksum can found at http://www.nxtcrypto.org/nxt-coin/client-download. The version 0.6.1 should be the following:

Code: [Select]
6b5c8632c2d52a066d40017055a2e28f25d16fa30d3c0574bddb12f7d157e55c
if checksum is ok unzip the file:

Code: [Select]
unzip nxt-client-0.6.1.zip
now the NRS client is in your home folder (/home/pi/nxt/)


3.2 add a autorun script for NRS-Client

make a new file in the /home/pi/nxt/ folder and name it "run_nxt.sh":

Code: [Select]
nano nxt/run_nxt.sh
insert the following (PORT/KEY values can be freely selected):

Code: [Select]
#!/bin/bash
cd /home/pi/nxt/
/usr/bin/java -Xms250m -Xmx350m -jar /home/pi/nxt/start.jar STOP.PORT=11111 STOP.KEY=123456 > nxtout.txt 2> nxterr.txt

Press CTRL and O at the same time and than ENTER to save, Press CTRL and X together to exit.

edit autostart:

Code: [Select]
crontab -e
insert the following at the end of the file:

Code: [Select]
@reboot sudo bash /home/pi/nxt/run_nxt.sh
Press CTRL and O at the same time and than ENTER to save, Press CTRL and X together to exit.

now the raspberry should be able to load the NRS software on boot


3.3 add a stop script for NRS-Client

make a new file in the /home/pi/nxt/ folder and name it "stop_nxt.sh":

Code: [Select]
nano nxt/stop_nxt.sh
insert the following (PORT/KEY must be the same as described in step 3.2):

Code: [Select]
/usr/bin/java -jar /home/pi/nxt/start.jar STOP.PORT=11111 STOP.KEY=123456 --stop
Press CTRL and O at the same time and than ENTER to save, Press CTRL and X together to exit.

now you will be able to stop the client on bash command line with the following command:

Code: [Select]
sudo bash nxt/stop_nxt.sh

before you reboot the raspberry you should use this script to prevent a blockchain error!

after stopping the client you will be able to reboot the system with this command:

Code: [Select]
sudo reboot


3.4 edit web.xml to connect with your browser from another pc instead of localhost

Code: [Select]
nano nxt/webapps/root/WEB-INF/web.xml
add after <param-name>allowedUserHosts</param-name> in <param-value>127.0.0.1; localhost; 192.168.1.20; 0:0:0:0:0:0:0:1;</param-value> your remote ip (192.168.1.20)

Press CTRL and O at the same time and than ENTER to save, Press CTRL and X together to exit.


3.5 edit jetty.xml to reduce maxThreads for less peak RAM usage (thanks to davethetrousers)

Code: [Select]
nano nxt/etc/jetty.xml
replace the dafault values of minThreads, maxThreads and idleTimeout with the following:

Code: [Select]
<Get name="ThreadPool">
      <Set name="minThreads" type="int"><Property name="threads.min" default="4"/></Set>
      <Set name="maxThreads" type="int"><Property name="threads.max" default="12"/></Set>
      <Set name="idleTimeout" type="int"><Property name="threads.timeout" default="20000"/></Set>
      <Set name="detailedDump">false</Set>
</Get>

Press CTRL and O at the same time and than ENTER to save, Press CTRL and X together to exit.


3.6 finish your installation

After all steps reboot the raspberry. Now the raspberry should be able to load the NRS software automatically on boot. You can check this with a browser connect to https://192.168.1.10:7875 after raspberry reboot (wait a few seconds).



4. manually start forging with NRS-Client (Important!)

to start forging you will need to be logged in with your web browser once. open https://192.168.1.10:7875, confirm the ssl notification, click on the padlock and unlock your account with your passphrase (unlocking an address takes a few seconds). If you dont have an blockchain.nxt and transaction.nxt file in the nxt folder (since version 0.4.8 ) the client automatically creates the files and sync with other nodes from nxt network. You can monitoring it by the Recent blocks field (the block counter should be incremented automatically). If the client is unlocked you can close the browser and the system will forging as long as the raspberry runs.


5. security issues

please pay attention to the genaeral safety note from Jean-Luc (lead Nxt developer) affecting the browser cache and posted on https://bitcointalk.org/index.php?topic=345619.msg4268774#msg4268774

Quote
There is one serious security issue which is not completely fixed in 0.4.9e. All requests URLs are being cached by the browser, and even though they don't appear in the browsing history (which is why we didn't discover the problem earlier), they are still in the browser cache. Check for yourself using about:cache on firefox.
This is bad, as it means your secret phrase is being written out to disk as plain text in the browser cache. And I am sure javascript exploits will appear which will try to extract it from there. To really fix that, all API requests from the browser that include the secret phrase have to be sent as POST, rather than GET requests. But this will require some significant changes to the javascript client, which will take some time. As we don't plan to maintain the current javascript client, I am not sure if such rewriting should even be undertaken now. In 0.4.9e I at least added the response headers which prevent caching to disk. Firefox honors those, but still caches the request URLs to memory. To be safe, I strongly suggest using a separate browser profile only for accessing your Nxt client, or private browsing mode. Everybody using 0.4.8 and earlier should immediately delete their browser cache.

I would add:
- dont open ports 7875 and 7876 on router
- use a offline passwort generator
- chose a long passphrase (more than 30 cryptical tokens)


6. automatic update script for NRS Client

coming soon...



7. handling with NRS and Java errors


you can check the java logfiles (nxtout.txt and nxterr.txt) in the nxt folder for errors!


7.1 "java.lang.NullPointerException" when open the adress https://192.168.1.10:7875 in browser:

the blockchain files seems to be currupted, delete blockchain.nrs, blockchain.nrs.bak, blocks.nxt, transactions.nxt, transactions.nxt.bak (next reboot the files will be recreated automatically)


7.2 you connect with your remote browser and after insert your passphrase the account interface cannot be opened (after a while)

in nxt/nxterr.txt there is a error like "DOS ALERT: Request from 192.168.1.20". the NRS client is still running but your remote ip is blocked by DOS protection. open the account local from raspberry browser does work. to solve this error do the following:

Code: [Select]
nano nxt/webapps/root/WEB-INF/web.xml

add a new init-param <init-param><param-name>ipWhitelist</param-name><param-value>192.168.1.20;</param-value></init-param> with your remote ip (in this case 192.168.1.20)

it should look like this example:

Code: [Select]
<filter>
<filter-name>DoSFilter</filter-name>
<filter-class>org.eclipse.jetty.servlets.DoSFilter</filter-class>
<init-param>
<param-name>maxRequestsPerSec</param-name>
<param-value>3000</param-value>
</init-param>
<init-param>
<param-name>delayMs</param-name>
<param-value>1000</param-value>
</init-param>
<init-param>
<param-name>ipWhitelist</param-name>
<param-value>192.168.1.20;</param-value>
</init-param>
<init-param>
<param-name>trackSessions</param-name>
<param-value>false</param-value>
</init-param>
<async-supported>true</async-supported>
</filter>

now you will be able to connect with your remote browser again.

7.3 WARNING: System properties and/or JVM args set. Consider using --dry-run or --e (listed in nxterr.txt)

remove transactions.nxt and blocks.nxt

7.4 java.lang.IllegalStateException: AsyncContext completed (fixed)

After a few hours you get many errors like this in nxt/nxtout.txt. The error appears several times per second and the client gets stuck. Answer from developer Come-from-Beyond: "This may be due to memory leak that is fixed in 0.4.8 (not released yet). Let's wait when it releases and check again."


If you see any errors in the log at all, please report them in our bug database: https://bitbucket.org/JeanLucPicard/nxt-public/issues


additional useful commands and tools

mount your local windows hdd remote for raspberry data sharing
Code: [Select]
sudo mount -t cifs //192.168.1.20/c$ /mnt -o user=myusername(x = ip windows pc, myusername = your username on windows pc)

starts the menu for the initial raspbian settings again (language, keyboard, timezone, hostname etc.)
Code: [Select]
sudo raspi-config
check the build-in Java configuration
Code: [Select]
sudo update-alternatives --config java(standard the location is marked with a star and the path is like /usr/lib/jvm/jdk-7-oracle-armhf/jre/bin/java and priority is 317 and auto-modus. If that is ok confirm with enter)

xrdp - if you wish to use a desktop to work remote on raspberry (e.g. to connect with microsoft remote desktop console)

type the following commands:

Code: [Select]
sudo apt-get install xrdp
sudo apt-get upgrade xrdp

now you can use microsoft remote desktop and work remote on the raspberry. in windows go to start -> open -> and type "mstsc" (insert the raspberry ip 192.168.1.10, connect and sign on with your password)



feel free to post corrections and additional infos, i'll add it into my thread.

If the short tutorial helps someone, feel free to spend some NXT @ 7121642459245273749    :D


Changelog:
2014-02-07: NRS version 0.7.0e - will be tested ...
2014-02-07: NRS version 0.6.1 - OK
2014-02-05: NRS version 0.6.0 - OK
2014-01-31: NRS version 0.5.11 - Broken
2014-01-24: NRS version 0.5.10 - Broken
2014-01-19: NRS version 0.5.9 (Resolved all remaining thread concurrency issues in the block and transaction handling. All reported null pointer exceptions, division by
zero, and related bugs should not happen anymore.)

2014-01-16: NRS version 0.5.8 (fix critical memory issue of 0.5.7)
2014-01-15:  NRS version 0.5.7 (performance, memory, network optimizations / debug logfile enabled / See: bitcointalk.org)
2014-01-14: NRS version 0.5.5 (performance optimizations / API changes)
2014-01-08: NRS version 0.5.3 (Fixed blockchain rescanning / prevent OutOfMemory attacks)
2014-01-07: NRS version 0.5.1
2014-01-05: edit step 3.2 and 3.5 to reduce maxThreads for less peak RAM usage (advice from davethetrousers) and guide update to the NRS version 0.5.0
2014-01-03: restructured install instructions and NRS version 0.4.8
« Last Edit: February 07, 2014, 04:28:51 PM by ahcsam »

Offline utopianfuture

  • Senior Nxter
  • ****
  • Posts: 308
  • NXT ambassador
    • View Profile
Re: NXT for Raspberry Pi instructions (forging with RPi)
« Reply #1 on: December 25, 2013, 05:21:53 PM »
Thanks for coming by. Please set up a bounty for ahcsam so that he can maintain the guide to setup Nxt node on Raspberry Pi.
NXT acc 3041433146235555849. Donation welcome if you find me being helpful.

Offline smaragda

  • Fresh Nxter
  • *
  • Posts: 7
  • WHOIS NXT?!? ;)
    • View Profile
Re: NXT for Raspberry Pi instructions (forging with RPi)
« Reply #2 on: December 25, 2013, 05:26:20 PM »
Just the thought of how this can/will turnout brings a smile to my face!!!    :)
"A world with the money can not be perfect." - BCNext
NXT: 12822873041258037678
BTC: 1Grv7NH3xDetLBBD5J1Y9NvxMw4znTCAe9

Offline Mario

  • Nxter
  • **
  • Posts: 99
    • View Profile
    • MYNXT.org
Re: NXT for Raspberry Pi instructions (forging with RPi)
« Reply #3 on: December 25, 2013, 05:26:35 PM »
Please respond if anybody did this successful. Thanks.
MYNXT.org

Offline DiCE1904

  • Nxter
  • **
  • Posts: 119
    • View Profile
Re: NXT for Raspberry Pi instructions (forging with RPi)
« Reply #4 on: December 25, 2013, 07:08:23 PM »
Just the thought of how this can/will turnout brings a smile to my face!!!    :)


Me too! I have a rasp just sitting around waiting to be used for something useful like this

Help me add more SCUM nodes
NXT: 18422382461553642657

Offline ola

  • Fresh Nxter
  • *
  • Posts: 11
    • View Profile
Re: NXT for Raspberry Pi instructions (forging with RPi)
« Reply #5 on: December 25, 2013, 07:31:30 PM »
I wrote a new post at raspberrypi.org hopefully it gets approved. We need pouncer to get involved in this. Here is the post:

"Hi there, I am ola. I am working with several members of the nxt community to bootstrap a new decentralized, built from the bottom up, 100% proof of stake crypto currency called NXT, Pronounced 'Next'. The Nxt community needs the help of this community badly  :cry: . We are currently in the alpha stage testing the decentralized network and we are getting ddosed constantly...This problem will go away if we had several thousand nxt nodes set up on several computers. Your rasberrypi devices can help us accomplish just that  8-) . We are also not looking for a handout..We have a donation fund of ~460,000 nxt to reward those who help us by installing next node through our launch date Jan 3 2014 to Help bootstrap the network.

The fund is currently worth about ~$22,000 after only 3 weeks. It is expected that after a little while past the the launch date, the fund would most likely be worth several million dollars. and with some of these funds distributed to those of you who decide to help out, who knows you might find yourself with several thousand of dollars in extra cash :D. Of course nothing is certain. But every evidence indicates this will be the case. Nxt Is only been in alpha for 3 weeks and already it is close to competing with the top crypto currencies like bitcoin see here, 5th on the map:

http://coinmarketcap.com/

Here is some nxt money from the fund:
https://docs.google.com/spreadsheet/ccc?key=0AgAGADgnQcrtdHRrV3V3Z1lzOXVEMWtqdElUaEtqV1E#gid=5

It is expected that nxt would eventually overtake bitcoin due to the extensive list of features it will be launching with, its superiority in transaction processing speed and eco-friendly forging process ("mining"). Take a look below to gain some insight:

Detailed feature sets:

- Decentralized DNS / Alias System (Starting at block 22000) ( this is already in effect and it raised the NXT market cap to > $20 million)
- Transparent Mining (Partially starting at block 25000) IN A COUPLE OF DAYS !
- Decentralized Asset Exchange / Colored Coins (Starting after block 30000) Jan 3 2014
     This also allows gateways to issue other currencies (fiat or crypto) on the Nxt network.
- Decentralized Marketplace / Auction
- Decentralized Mixing Service
- Encrypted Messaging / Chat
- DDoS Protection - Project Kharon (in development)
- Voting


As you can see, its an impressive list of features for a currency / protocol to be launching with and there is much talk about nxt in several prominent crypto currency circles. If you would like to take the plunge to help out and be rewarded for your efforts, A guide has been written to help you accomplish this. See below:

Guide to installing nxt on raspberrypi
https://nextcoin.org/index.php/topic,1277.msg10730/topicseen.html#msg10730

If you don't know what these feature sets mean, what you need to know is that the world you used to know will no longer be the same in ~1 to 2 years...Spend 30 mins to browse the resources below to understand this world changing innovation

Detailed nxt overview
http://nxtcrypto.wikia.com/wiki/Nxt_Wiki
http://nxtcrypto.wikia.com/wiki/FAQ
http://en.wikipedia.org/wiki/Nxt

Videos
http://www.youtube.com/watch?v=7oAiCOWLtn4    nxt intro
http://www.youtube.com/watch?v=f8dLMoZLMzM  nxt intro
http://www.youtube.com/watch?v=w1FTzBjy_8Q    how forging works


If you manage to get your accounts up, respond with you nxt account addresses and you will be rewarded by several of the moderators coming to this forum post from the nxt community. Thank you guys. :)

"

Offline Mario

  • Nxter
  • **
  • Posts: 99
    • View Profile
    • MYNXT.org
Re: NXT for Raspberry Pi instructions (forging with RPi)
« Reply #6 on: December 25, 2013, 07:54:01 PM »
https://bitcointalk.org/index.php?topic=345619.msg4139302#msg4139302
MYNXT.org

Offline ahcsam

  • Fresh Nxter
  • *
  • Posts: 16
    • View Profile
Re: NXT for Raspberry Pi instructions (forging with RPi)
« Reply #7 on: December 25, 2013, 08:15:28 PM »
Thanks to Ola and davethetrousers@bitcointalk for their support!  ;)
« Last Edit: December 27, 2013, 12:38:56 AM by ahcsam »

Offline davethetrousers

  • Fresh Nxter
  • *
  • Posts: 35
  • the NXT one to come
    • View Profile
Re: NXT for Raspberry Pi instructions (forging with RPi)
« Reply #8 on: December 25, 2013, 09:49:43 PM »
I just put together a standalone package with Oracle JRE for use on the Pi. Here's a link to the writeup on BTCTalk:

https://bitcointalk.org/index.php?topic=345619.msg4140793#msg4140793
Complete package to efficiently run the NXT server on your Raspberry Pi
Serving a public NXT node at 109.230.224.65 in Germany
NXT 14923118471272229432

Offline Mario

  • Nxter
  • **
  • Posts: 99
    • View Profile
    • MYNXT.org
Re: NXT for Raspberry Pi instructions (forging with RPi)
« Reply #9 on: December 25, 2013, 10:23:47 PM »
Now sticky in this sub forum!
MYNXT.org

Offline NxtChoice

  • Nxter
  • **
  • Posts: 71
    • View Profile
Re: NXT for Raspberry Pi instructions (forging with RPi)
« Reply #10 on: December 26, 2013, 05:06:38 AM »
Thanks you guys! So great progress on NxtPI during the last 24 hours. I had the experiment a week ago, and now you guys got so great progress.

Look forward to the NxtPI network.
NXT: 17959837214177417816

Offline ahcsam

  • Fresh Nxter
  • *
  • Posts: 16
    • View Profile
Re: NXT for Raspberry Pi instructions (forging with NxtPI)
« Reply #11 on: December 27, 2013, 11:46:06 AM »
Hi,

i update the guide with davethetrousers standalone java bundle and enhanced it with autostart, errorlog and possibility to stop the client


Offline guZ

  • Fresh Nxter
  • *
  • Posts: 8
    • View Profile
Re: NXT for Raspberry Pi instructions (forging with NxtPI)
« Reply #12 on: December 28, 2013, 08:46:05 PM »
Regarding the use of Raspberry Pi for forging/helping out the network, i had problems running the client in Model B as is, mostly running out of memory.
However, if you mount the nxt directory in a separate usb stick and add extra swap memory by utilizing another usb stick, performance is seriously enhanced.
The faster the usb stick, especially the one used as swap, the better the performance.
Glad to give details if anyone interested.
NXT Donations always welcome: 16366930519100644850

Offline davethetrousers

  • Fresh Nxter
  • *
  • Posts: 35
  • the NXT one to come
    • View Profile
Re: NXT for Raspberry Pi instructions (forging with NxtPI)
« Reply #13 on: December 28, 2013, 09:00:15 PM »
guZ, if you run the RPi just dedicated for NXT, i.e. without a desktop/Xorg and with minimum GPU memory split, its RAM is actually more than enough.

It only begins to get problematic when you want to use the Pi as a GUI machine with NXT running in the background. Let's hope the 0.4.8 update will at least pin down the RAM use to a specific value (no more leakage), so that one can take an exact value into account and plan accordingly.
Complete package to efficiently run the NXT server on your Raspberry Pi
Serving a public NXT node at 109.230.224.65 in Germany
NXT 14923118471272229432

Offline cen666

  • Fresh Nxter
  • *
  • Posts: 7
    • View Profile
Re: NXT for Raspberry Pi instructions (forging with NxtPI)
« Reply #14 on: December 28, 2013, 09:23:36 PM »
Hi there, dedicating my first Post to thank you for the awesome Instructions and Install Package!

I purchased a Raspberry Pi yesterday only to get it up and running as NXT Client, works fine and now i just have to wait to start forging until confirmations are reached. Okay, this whole NXT Client thing gave me also an excuse to get a RPI ;-)
I really like this hardware as "always on energy and cost effiecient device".
Running without GUI and accessing NXT Client only remote via Browser indeed helps performance.