-
Notifications
You must be signed in to change notification settings - Fork 56
Building Apache Zeppelin
ATTENTION: Please note that the verified version of this package is currently using an older version of log4j which has the security vulnerabilities. Please see here for more details.
- When following the steps below please use a standard permission user unless otherwise specified.
- A directory
/<source_root>/will be referred to in these instructions, this is a temporary writable directory anywhere you'd like to place it.
Apache Zeppelin binaries are available and can be downloaded from here. To use these binaries, different Java flavors can be installed on mentioned distributions.
Note: Apache Zeppelin(v0.10.0) was verified at the time of creation of these instructions
export SOURCE_ROOT=/<source_root>/- Ubuntu (18.04, 20.04)
-
With Open JDK
sudo apt-get update sudo apt-get install -y openjdk-8-jdk-headless openjdk-8-jdk -
With AdoptOpenJDK (OpenJDK11 with Eclipse OpenJ9)
sudo apt-get -y install wget tar
- Download and install AdoptOpenJDK (OpenJDK11 with Eclipse OpenJ9) from here.
-
export JAVA_HOME=<Path to Java>
export PATH=$JAVA_HOME/bin:$PATHExtract Apache Zeppelin binary tar to $SOURCE_ROOT and follow steps given below.
cd $SOURCE_ROOT/<Apache Zeppelin_binary_folder>/
bin/zeppelin-daemon.sh start # Start the server
bin/zeppelin-daemon.sh status # Check status of server
bin/zeppelin-daemon.sh stop # Stop the serverOpen http://<ip_address>:8080/ in your browser to access Web UI.
Note: In order to access Zeppelin UI through web browser, you might need to change ZEPPELIN_ADDR to 0.0.0.0 by export ZEPPELIN_ADDR="0.0.0.0".
The information provided in this article is accurate at the time of writing, but on-going development in the open-source projects involved may make the information incorrect or obsolete. Please open issue or contact us on IBM Z Community if you have any questions or feedback.