Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apache zeppelin process died

I'm trying to run zeppelin on Ubuntu14 w/ Hadoop 1.0.3 and Spark 1.4.0. I've finished building the source code, and all of the package successfully finished building. But when I run the daemon, it fails and says that the Zeppelin process had died.

Any ideas where this is going wrong?

It says that it can't find the logs folder and the run folder, which are definitely there.

like image 342
Joseph Seung Jae Dollar Avatar asked Jun 17 '15 03:06

Joseph Seung Jae Dollar


3 Answers

Joseph,

I suggest that you try to test your zeppelin package first.

mvn verify

or check if your zeppelin process is alive or not.

ps -aux | grep zeppelin
like image 170
Kangrok Lee Avatar answered Oct 18 '22 00:10

Kangrok Lee


Try running zeppelin by sudo :

sudo bin/zeppelin-daemon.sh start
like image 26
Riyadh Al-Ridha Yakub Avatar answered Oct 18 '22 00:10

Riyadh Al-Ridha Yakub


This works for me:

ps -ef | grep "zeppelin"
kill -9 pid
sudo bin/zeppelin-daemon.sh restart
like image 2
Balaji Avatar answered Oct 17 '22 22:10

Balaji