-2

This question might have answered but I am not able to solve. Need some help.

Issues: Not able to see http://127.0.0.1:8080/ outside VM but able to see http://127.0.0.1:8088/ and other ports.

I am using zeppelin-0.8.2 in Oracle VM.Cloudera Quickstart is used for Spark.I am able to see the port http://127.0.0.1:8080/#/ inside VM and could create notebook. VM Config Network : NAT+Host Only

I have also tried to change the port from 8080 to 8180 still same issues. I am missing some thing. Please let me know. Port 8088

VM Network

user3858193
  • 1,320
  • 5
  • 18
  • 50
  • It's possible Zeppelin is only configured to bind on localhost, and not externally. Can you show the Zeppelin config file? – OneCricketeer Nov 28 '19 at 05:44
  • 1
    zeppline-site.xml >>>> zeppelin.server.addr 127.0.0.1 Server binding address zeppelin.server.port 8180 zeppelin.server.ssl.port 8443 Server ssl port. (used when ssl proper zeppelin.server.context.path / Context Path of the Web Application – user3858193 Nov 28 '19 at 13:10

1 Answers1

1

If you want to expose Zeppelin externally, you must update the configs

<name>zeppelin.server.addr</name>
<value>0.0.0.0</value> 
OneCricketeer
  • 179,855
  • 19
  • 132
  • 245