2017-06-13 50 views
0

我在HDP 2.6中。當我嘗試啓動NameNode的我得到的波紋管錯誤:NameNode啓動錯誤:No方案的文件系統:ht

java.io.IOException: No FileSystem for scheme: http 
     at org.apache.hadoop.fs.FileSystem.getFileSystemClass(FileSystem.java:2786) 
     at org.apache.hadoop.fs.FileSystem.createFileSystem(FileSystem.java:2793) 
     at org.apache.hadoop.fs.FileSystem.access$200(FileSystem.java:99) 

,當我嘗試HDFS ls命令:

[[email protected] ambari-agent]$ hdfs dfs -ls/
ls: No FileSystem for scheme: http 

什麼建議嗎?

+0

可以發佈core-site.xml嗎? –

+0

有一點,我改變了我的core-site.xml。我改變了Ambari中Fs.DefaultFs的值。這個問題發生後,問題就發生了。 – fhe

+0

發佈core-site.xml的內容 –

回答

0

core-site.xmlfs.defaultFS屬性值使用http協議(而不是hdfs),即值看起來像http://<host>:<port>時發生「No FileSystem for scheme: http」錯誤。正確的值是hdfs://<host>:<port>

相關問題