I am newbie to setting hadoop on EC2. I am trying to set-up single node hadoop setup. I have successfully installed and ran Hadoop 1.1.2 on one of the Amazon EC2 instance. All nodes, namenode, datanode, jobtracker, mapred node are on the same machine.
My core-site cofiguration is
<property>
<name>fs.default.name</name>
<value>hdfs://localhost:9000</value>
</property>
When I start the Hadoop, and go to web ui, namenode UI opens without any problem.
http://<namenode>:50070/dfshealth.jsp
But when clicked on the "Browse the filesystem", it redirects to
http://localhost:50075
which is incorrect. It should be something
http://<namenode>:50075.
But in this case it failes.
Please help me to figure out the problem.