hbase终于跑起来了 续

其实在前面还有一段,没有保存下当时的经历,现在将配置项保存一下

首先好像遇到过一个说hbase与hadoop版本不一致的问题(rpc问题),于是将hadoop的core包copy到了hbase的lib下,代替已有的那个hadoop-core包

hbase-site.xml

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>

<configuration>
<property>  
    <name>hbase.rootdir</name>  
    <value>hdfs://localhost:9000/hbase</value>  
    <description>The directory shared by region servers.  
    </description>  
  </property>
</configuration>

core-site.xml

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>

<!-- Put site-specific property overrides in this file. -->

<configuration>
<property>
<name>fs.default.name</name>    
 <value>hdfs://localhost:9000</value>    
 </property>    
 <property>    
 <name>hadoop.tmp.dir</name>    
  <value>/home/lf/tmpdata</value>    
</property>

</configuration>

mapred-site.xml

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>

<!-- Put site-specific property overrides in this file. -->

<configuration>
<property>    
    <name>mapred.job.tracker</name>    
   <value>localhost:9001</value>    
  </property>

</configuration>

hdfs-site.xml

<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>

<!-- Put site-specific property overrides in this file. -->

<configuration>
<property>    
   <name>dfs.replication</name>    
 <value>1</value>    
 </property>
</configuration>


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