vangj / vagrant-hadoop-2.4.1-spark-1.0.1

Vagrant project to spin up a cluster virtual machines with Hadoop v2.4.1 and Spark v1.0.1

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How-To make accessible the web urls in Host web browser

vumc opened this issue · comments

commented

Web UI

You can check the following URLs to monitor the Hadoop daemons.

  1. NameNode
  2. ResourceManager
  3. JobHistory
  4. Spark

Currently the mentioned urls are not getting opened in host web browser (i mean, after vagrant up & executing those post-provisioning cmds).

How-To make them accessible in host web browser ?

👍 @vumc Did you ever figure out the answer to this?

commented

Make sure the system's private network and Vagrantfile pre-configured ip's are in SAME SUBNET. i.e
$ ifconfig -a

and if inet -> 192.168.1.255 then reconfigure Vagrantfile private network ip settings
node.vm.network :private_network, ip: "10.211.55.10#{i}"
to
node.vm.network :private_network, ip: "192.168.1.10#{i}"