浏览namenode上的文件系统不工作:Hadoop安装

浏览namenode上的文件系统不工作:Hadoop安装,hadoop,cygwin,namenode,Hadoop,Cygwin,Namenode,我已经安装了hadoop-1.2.1。我能够配置name node和job trakcer,它们都已启动并正在运行。 但是,当我尝试单击“浏览文件系统”链接时。我自动被重定向到“?”。 你能帮我一下吗。 PFB我的配置文件: HDFS-SITE.XML <?xml version="1.0"?> <?xml-stylesheet type="text/xsl" href="configuration.xsl"?> <!-- Put site-specific pr

我已经安装了hadoop-1.2.1。我能够配置name node和job trakcer,它们都已启动并正在运行。 但是,当我尝试单击“浏览文件系统”链接时。我自动被重定向到“?”。 你能帮我一下吗。 PFB我的配置文件:

HDFS-SITE.XML

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

<!-- Put site-specific property overrides in this file. -->

<configuration>
<property> 
<name>dfs.replication</name> 
<value>1</value> 
</property> 
<property> 
<name>dfs.permission</name> 
<value>false</value> 
</property> 
<property> 
<name>dfs.data.dir</name> 
<value>C:/cygwin64/home/hadoop-dir/datadir</value> 
</property> 
<property> 
<name>dfs.name.dir</name> 
<value>C:/cygwin64/home/hadoop-dir/namedir</value> 
</property> 
</configuration>

dfs.replication
1.
dfs.permission
假的
dfs.data.dir
C:/cygwin64/home/hadoop dir/datadir
dfs.name.dir
C:/cygwin64/home/hadoop dir/namedir
Core-site.xml

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

<!-- Put site-specific property overrides in this file. -->


<configuration>
<property>
<name>fs.default.name</name>
<value>hdfs://localhost:9000</value>
</property>
</configuration>

fs.default.name
hdfs://localhost:9000
Mapred-site.xml

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

<!-- Put site-specific property overrides in this file. -->

<configuration>
<property> 
<name>mapred.job.tracker</name> 
<value>localhost:50001</value> 
</property> 
</configuration>

mapred.job.tracker
本地主机:50001

为什么要放置
C:/cygwin64
dfs.data.dir
dfs.name.dir
?之前我使用了/home/hadoop dir/datadir,它给了我一些配置错误,所以我用完整路径替换了它。您可以使用
-put
-copyFromLocal
从本地复制数据吗?