为什么Hadoop名称节点连接到奇怪的[aca8ca1d.ipt.aol.com]主机名?

时间:2017-09-15 08:22:29

标签: hadoop hdfs hadoop2 hostname namenode

我正在使用mac系统并使用以下命令启动hadoop系统:

start-dfs.sh

我的主机名是" ctpllt072.local"由"主机名"返回命令。 但是,当连接启动名称节点时,我得到一个奇怪的主机名和消息,如下所示:

Starting namenodes on [aca8ca1d.ipt.aol.com]
aca8ca1d.ipt.aol.com: ssh: connect to host aca8ca1d.ipt.aol.com port 22: Operation timed out

我的系统中没有指定[aca8ca1d.ipt.aol.com],也没有在/ etc / hosts和任何属性文件中。

以下是我的hdfs,yarn和core-site xml文件:

芯-site.xml中

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>

<configuration>
   <property>
      <name>fs.defaultFS</name>
      <value>hdfs://172.168.***.***/</value>
   </property>
</configuration>

HDFS-site.xml中

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>

<configuration>
  <property>
    <name>dfs.replication</name>
    <value>1</value>
  </property>

  <property>
    <name>dfs.namenode.name.dir</name>
    <value>/Users/karan.verma/Documents/backups/h/hDir/hdfs/datanode</value>
  </property>
  <property>
    <name>dfs.datanode.data.dir</name>
    <value>/Users/karan.verma/Documents/backups/h/hDir/hdfs/namenode</value >
  </property>
</configuration>

纱-site.xml中

<?xml version="1.0"?>

<configuration>

    <property>
        <name>yarn.nodemanager.aux-services</name>
        <value>mapreduce_shuffle</value>
    </property>
    <property>
        <name>yarn.nodemanager.aux-services.mapreduce.shuffle.class</name>
        <value>org.apache.hadoop.mapred.ShuffleHandler</value>
    </property>

    <property>
        <name>yarn.resourcemanager.hostname</name>
        <value>127.0.0.1</value>
    </property>


        <property>
            <name>yarn.resourcemanager.address</name>
            <value>127.0.0.1:8032</value>
        </property>
        <property>
            <name>yarn.resourcemanager.scheduler.address</name>
            <value>127.0.0.1:8030</value>
        </property>
        <property>
            <name>yarn.resourcemanager.resource-tracker.address</name>
            <value>127.0.0.1:8031</value>
        </property>
</configuration>

在网上搜索原因,但没有运气。请提出可能存在的问题以及解决方法。

1 个答案:

答案 0 :(得分:0)

得到了解决方案,我实际上是在试图错误地连接aol服务器。 我的IP以192.168开始。 ,aloes ip是172.168。,如网页上所述(截图附后)。 enter image description here

所以我的配置改为

<configuration>
   <property>
      <name>fs.defaultFS</name>
      <value>hdfs://192.168.***.***/</value>
   </property>
</configuration>