Member since
09-29-2015
2
Posts
0
Kudos Received
0
Solutions
09-29-2015
03:24 PM
I found using some simple ssh scripts made it quicker for me: mvn package
ssh root@storm-server <<'ENDSSH'
storm kill <current topology name>
ENDSSH
scp target/<topology>.jar root@<storm server>:
scp src/main/resources/config.properties root@<storm server>:
ssh root@<storm server> <<'ENDSSH'
storm jar <topology>.jar <main class> config.properties
ENDSSH
... View more
09-29-2015
12:24 PM
Rasbian (default Pi OS) ships with the 1.8 JDK, so it should work fine.
... View more