Skip to content
This repository was archived by the owner on Mar 15, 2022. It is now read-only.

Add user-friendly message mentioning the Zeppelin port #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion thirdparty/zeppelin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ elif [ "$1" == "start" ]; then
cd $thirdparty_root
zeppelin_root=$(find . -maxdepth 1 -type d | grep zeppelin-${zeppelin_version} )
unset CLASSPATH
ZEPPELIN_PORT=8090 $zeppelin_root/bin/zeppelin-daemon.sh start
export ZEPPELIN_PORT=8090
$zeppelin_root/bin/zeppelin-daemon.sh start
echo "Zeppelin is starting, it will be available on port ${ZEPPELIN_PORT}"
echo "Remember to start the PGX server in order to be able to use the %pgx interpreter"
)
exit 0
Expand Down