Mac下每次開機啟動hadoop都要格式化檔案系統
阿新 • • 發佈:2018-12-14
hdfs-site.xml下配置
<configuration> <property> <name>dfs.replication</name> <value>1</value> </property> <property> <name>dfs.namenode.name.dir</name> <value>/Users/shen/tmp/dfs/namenode</value> </property> <property> <name>dfs.datanode.data.dir</name> <value>/Users/shen/tmp/dfs/datanode</value> </property> <property> <name>dfs.http.address</name> <value>localhost:9870</value> </property> </configuration>
core-site.xml
<configuration> <property> <name>fs.defaultFS</name> <value>hdfs://localhost:9000</value> </property> <property> <name>hadoop.tmp.dir</name> <value>/Users/shen/tmp</value> </property> </configuration>
hdfs-site.xml的第二三個設定,以及core-site.xml的第二個設定,要設定一下檔案系統資訊的目錄,像我這裡就是/Users/shen/tmp
它預設似乎放在系統目錄下,似乎因為許可權問題需要重新格式化。