You should use host:port rather than just port. See HADOOP-2404, and HADOOP-2185.
Ved Prakash wrote:
Hi friends, I have been trying to start hadoop on the master but it doesn't start the name node on it, checking the logs I found the following error
hadoop-site.xml listing <configuration> <property> <name>fs.default.name</name> <value>hdfs://ved-desktop:50001</value> </property> <property> <name>mapred.job.tracker</name> <value>ved-desktop:50002</value> </property> <property> <name>dfs.secondary.http.address</name> <value>50003</value> </property>
Should be <host:port> not just port.
<property> <name>dfs.http.address</name> <value>50004</value> </property>
Same here.
<property> <name>mapred.job.tracker.http.address</name> <value>50005</value> </property>
Same here.
<property> <name>tasktracker.http.address</name> <value>50006</value> </property>
Same here.
</configuration> Yesterday I could start namenode, tasktracker, jobtracker, secondarynamenode properly but today its giving me problem. What could be the reason, can anyone help me with this? Thanks