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>

 

补充一下:

conf目录下的hbase-env.sh中必须加入jdk的地址

export JAVA_HOME={你的JDK安装地址}

regionservers文件中

加入所有的服务器地址

还有一点,在hbase-site.xml中,当我把localhost换成本机IP时启动hbase会报错,连不上hdfs

目前疑问中

猜你喜欢

转载自chnsslf.iteye.com/blog/1262698