我在服务器VM上设置了hadoop(伪分布式),我正在尝试 使用Java API访问HDFS。
我服务器上的fs.default.name为hdfs://0.0.0.0:9000
(与localhost:9000
一样,它不接受来自远程站点的请求)。
我可以通过端口9000连接到服务器
$ telnet srv-lab 9000
Trying 1*0.*.30.95...
Connected to srv-lab
Escape character is '^]'.
^C
向我表明连接应该正常工作。我使用的Java代码是:
try {
Path pt = new Path(
"hdfs://srv-lab:9000/test.txt");
Configuration conf = new Configuration();
conf.set("fs.default.name", "hdfs://srv-lab:9000");
FileSystem fs = FileSystem.get(conf);
BufferedReader br = new BufferedReader(new InputStreamReader(
fs.open(pt)));
String line;
line = br.readLine();
while (line != null) {
System.out.println(line);
line = br.readLine();
}
} catch (Exception e) {
e.printStackTrace();
}
但我得到的是:
java.net.ConnectException: Call From clt-lab/1*0.*.2*2.205 to srv-lab:9000 failed on connection exception: java.net.ConnectException: Connection refused; For more details see: http://wiki.apache.org/hadoop/ConnectionRefused
因此,即使通过telnet连接,任何拒绝连接的提示都可以正常工作吗?
答案 0 :(得分:2)
您的hdfs条目错误。 fs.default.name必须设置为hdfs://srv-lab:9000
。设置此项并重新启动群集。这将解决问题