2

目前我正在尝试在我的 ubuntu 14.10(32 位 utopic)上安装 hadoop-2.6.0。我按照这里的说明进行操作:

http://www.itzgeek.com/how-tos/linux/ubuntu-how-tos/install-apache-hadoop-ubuntu-14-10-centos-7-single-node-cluster.html#axzz3X2DuWaxQ

但是,当我尝试格式化 namenode 时,无法启动 namenode。

这是我尝试执行 hdfs 或 hadoop namenode -format 时不断收到的信息:

15/04/11 16:32:13 FATAL namenode.NameNode: Fialed to start namenode
java.lang.IllegalArgumentException: URI has an authority component
    at java.io.File.<init>(File.java:423)
    at             org.apache.hadoop.hdfs.server.namenode.NNSStorage.getStorageDirectory(NNStorage.java:329)
    at
org.apache.hadoop.hdfs.server.namenode.FSEditLog.initJournals(FSEditLog.java: 270)
    at
org.apache.hadoop.hdfs.server.namenode.FSEditLog.initJournalsForWrite(FSEditLog.java:241)
    at     org.apache.hadoop.hdfs.server.namenode.NameNode.format(NameNode.java:935)
    at     org.apache.hadoop.hdfs.server.namenode.NameNode.createNameNode(NameNode.java:1379)
    at     org.apache.hadoop.hdfs.server.namenode.NameNode.main(NameNode.java:1504)
15/04/11 16:32:13 INFO util.ExitUtil: Exiting with status 1
15/04/11 16:32:14 INFO namenode.NameNode: SHUTDOWN_MSG:
/************************************************************
SHUTDOWN_MSG: Shutting down NameNode at ThinkPad-Edge-E540/127.0.1.1
************************************************************/

我是 linux 和 hadoop 的新手。请帮我解决这个问题。此外,当我第一次尝试安装 hadoop 时,我收到如下错误消息:

    java.net.ConnectException: Call From ThinkPad-Edge-E540/127.0.1.1 to localhost:9000 failed on connection exception: java.net.ConnectException: Connection refused; For more details see:  http://wiki.apache.org/hadoop/ConnectionRefused

后来,我卸载了 hadoop 2.6.0,现在我正在尝试按照上面链接中显示的当前说明进行操作。

更新

我已经删除了我在以前版本中安装的所有以前安装的 java (jdk1.7.0)。但是错误信息仍然存在。

更新

这是我的 etc/hosts 中显示的内容:

127.0.0.1 localhost
127.0.1.1 myname-mycomputer (I have commented out this line per suggestion)

#The following lines are desirable for IPv6 capable hosts
::1       ip6-localhost  ip6-loopback
fe00::0   ip6-localnet
ff00:0    ip6-mcastprefix
ff02::1   ip6-allnodes
ff02::2   ip6-allrouters
4

2 回答 2

5

当我错误地在 hdfs-site.xml 和 core-site.xml 中的 tmp dir 路径中指定了错误的 namenode 和 datanode 路径时,会出现此问题,路径应该格式正确,例如 -

<property>
    <name>dfs.namenode.edits.dir</name>
    <value>file:///home/hadoop/hadoop-content/hdfs/namenode</value>
</property>

<property>
    <name>dfs.datanode.data.dir</name>
    <value>file:///home/hadoop/hadoop-content/hdfs/datanode</value>
</property>

对于 core-site.xml 中的临时目录,它就像 -

<configuration>
<property>
    <name>fs.defaultFS</name>
    <value>hdfs://localhost:9000</value>
</property>
<property>
    <name>hadoop.tmp.dir</name>
    <value>/home/hadoop/hadoop-content/tmp</value>
</property>

有时我们在指定时会出错 -file:///

于 2016-08-19T09:39:53.917 回答
0

/etc/hosts

1.添加这一行:

your-ip-address    your-host-name

例子:192.168.1.8 master

/etc/hosts

2.删除带有的行127.0.1.1(这会导致回环)

3. 在您的 core-site中,更改localhostyour-ipyour-hostname

现在,重新启动集群。

于 2015-04-12T06:23:30.810 回答