Thanks everyone for answers!

I'd tried a lot, but I couldn't realize where is the problem.
Alex, thank you, but there wasn't problem with free space, and I think that
these errors somehow relate to this discution
<http://stackoverflow.com/questions/21168141/can-not-install-packages-using-node-package-manager-in-ubuntu>
about
node, nodejs and nodejs-legacy packages, though it seems that I solved them.

Nevertheless, now I'm using Zeppelin! And I want to share my experience:
1. I've packaged final distribution on another machine (Fortunately there
weren't any errors on Mac OS X). I run this in zeppelin folder:

mvn clean package -P build-distr

2. Moved zeppelin-0.5.0-SNAPSHOT.tar.gz to the server, where ubuntu 14 is
installed.

scp ./zeppelin-distribution/target/zeppelin-0.5.0-SNAPSHOT.tar.gz
<username>@<host>:<path>

3. Then I immediately unzipped archive and started Zeppelin daemon on the
server. Since ssh is already configured between my laptop and server, I
made port forwarding via SSH (SSH tunneling).

ssh -f -N -q -L 8080:localhost:8080 <username>@<host>
ssh -f -N -q -L 8081:localhost:8081 <username>@<host>

4. Go to browser at localhost:8080 and here it is long-awaited Zeppelin.​

These links helped me:
https://groups.google.com/d/msg/zeppelin-developers/OrUq016fJYo/BE6anKCddAEJ
https://help.ubuntu.com/community/SSH/OpenSSH/PortForwarding
http://superuser.com/questions/353419/what-does-ssh-l-8080localhost8080-roottest-abc-com-mean#comment389242_353420

Reply via email to