Hdfs-site.xml

原文链接: http://liliugen.iteye.com/blog/1407551

Hdfs-site.xml 

  //指定name镜像文件存放目录,如不指定则 
   //默认为core-site中配置的tmp目录 

   <property> 
       <name>dfs.name.dir</name> 
       <value>/usr/local/hadoop/hdfs/name</value> 
   </property> 
      
//数据节点冗余备份的数量,由于实验只有2个 
// NN顾设置唯一,实际配置是可由实际情况 
//配置,建议尽量大于3 
   <property> 
       <name>dfs.replication</name>    
       <value>1</value>                
   </property>                        

//是否需要角色权限验证,上传文件时会用到, 
//如果为true,需要绑定hadoop用户角色 
   <property> 
       <name>dfs.permissions</name>  
       <value>false</value>            
   </property> 

//SNN的web访问地址。 
   <property> 
       <name>dfs.secondary.http.address</name> 
       <value>hadoop.second:50090</value> 
   </property> 

//数据存放的目录,如果不写默认为 
// core-site中配置的tmp目录 
   <property> 
      <name>dfs.data.dir</name>            
      <value>/usr/local/hadoop/hdfs/data</value> 
   </property> 


link:http://hi.baidu.com/bjwyl66/blog/item/f60e29b1a269f4b9d9335aa9.html 

你可能感兴趣的:(hadoop,hdfs)