Directory /usr/local/hadoop/tmp/tmp/hadoop-root/dfs/name is in an inconsistent state: storage directory does not exist or is not accessible
时间:2015-08-18 06:29:51
收藏:0
阅读:2538
解决方法:
<property> <name>hadoop.tmp.dir</name> <value>/usr/local/hadoop/tmp</value> </property>
改成如下:
<property> <name>hadoop.tmp.dir</name> <value>/usr/local/hadoop/tmp/hadoop-${user.name}</value> </property>
原文:http://www.cnblogs.com/lvlv/p/4738212.html
评论(0)