Apache Zeppelin with Apache Spark Installation on Ubuntu

Installation Steps for Apache Zeppelin on Ubuntu

Prerequisite: Need to have Java 7 or Java 8 installed on Ubuntu Operating System.

The first step is to download the latest version on Apache Zeppelin and save it in one of the folder

Link: http://zeppelin.apache.org/download.html

The second step is to unzip the downloaded tar file (i.e) .tgz (We have stored the downloaded tar file in /home/bigdata/apachezeppelin/ (We have manually created apachezeppelin folder by using command mkdir apachezeppelin)

bigdata@bigdata:~$ cd /home/bigdata/apachezeppelin/
bigdata@bigdata:~/apachezeppelin$ pwd
/home/bigdata/apachezeppelin
bigdata@bigdata:~/apachezeppelin$ ls -ltr
total 683072
-rw-rw-r--  1 bigdata bigdata 699455687 Aug 15 11:27 zeppelin-0.9.0-bin-netinst.tgz
bigdata@bigdata:~/apachezeppelin$ tar -xvzf zeppelin-0.9.0-bin-netinst.tgz 
zeppelin-0.9.0-bin-netinst/
zeppelin-0.9.0-bin-netinst/interpreter/
zeppelin-0.9.0-bin-netinst/LICENSE
zeppelin-0.9.0-bin-netinst/bin/
zeppelin-0.9.0-bin-netinst/licenses/
zeppelin-0.9.0-bin-netinst/plugins/
zeppelin-0.9.0-bin-netinst/k8s/
zeppelin-0.9.0-bin-netinst/NOTICE
zeppelin-0.9.0-bin-netinst/README.md
zeppelin-0.9.0-bin-netinst/zeppelin-web-0.9.0.war
zeppelin-0.9.0-bin-netinst/lib/
zeppelin-0.9.0-bin-netinst/notebook/
zeppelin-0.9.0-bin-netinst/conf/
zeppelin-0.9.0-bin-netinst/zeppelin-web-angular-0.9.0.war
.... (It will unzip the zeppelin-0.9.0-bin-netinst.tgz)

Now you can see we have zeppelin-0.9.0-bin-netinst folder

bigdata@bigdata:~/apachezeppelin$ ls -ltr
total 683072
-rw-rw-r--  1 bigdata bigdata 699455687 Aug 15 11:27 zeppelin-0.9.0-bin-netinst.tgz
drwxr-xr-x 12 bigdata bigdata      4096 Aug 15 16:39 zeppelin-0.9.0-bin-netinst

The third step is to Start Apache Zeppelin by command

Type bin/zeppelin-daemon.sh start

Open Internet Explorer and type address localhost:8080

For more explanation see the below video

The fourth step is to Stop Apache Zeppelin by command

Type bin/zeppelin-daemon.sh stop

For more explanation see the below video

By Bhavesh