all

I have setupped a hadoop cluster in fully distributed mode. First, I set core-site.xml "fs.default.name" and mapred-site.xml "mapred.job.tracker" in hostname:port format, and chang /etc/hosts correspondingly, the cluster works succesfully.

Then I use another way, I set set core-site.xml "fs.default.name" and mapred-site.xml "mapred.job.tracker" in ip:port format. It dosen't work.

I find ERROR org.apache.hadoop.metrics2.impl.MetricsSystemImpl: Error getting localhost name. Using 'localhost'... in namenode log file and

ERROR org.apache.hadoop.metrics2.impl.MetricsSystemImpl: Error getting localhos t name. Using 'localhost'... java.net.UnknownHostException: slave01: slave01: Name or service not known

in datanode log file.

In my opinion,ip and hostname is equivalent. Is there something wrong in my hadoop conf?

link|improve this question

75% accept rate
Not sure why the exception, but it's from InetAddress.getLocalHost().getHostName(). Here is the code for MetricsSystemImpl.java. I don't think it's a problem with the configuration files. – Praveen Sripati Jan 3 at 6:02
why can I succeed in first way? The only changed factor is the configuration file, So I infer that there is something wrong with ip:port format – soulmachine Jan 3 at 9:38
feedback

1 Answer

maybe there is a wrong configured hostname in /etc,

you should check hostname /etc/hosts /etc/HOSTNAME (rhel/debian) or rc.conf (archlinux) etc.

link|improve this answer
I succeeded in hostname:port format, but failed in ip:port format. So there is definitely no error in my /etc/hostname and /etc/hosts files. – soulmachine Jan 12 at 7:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.