首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

hbase总算跑起来了 续

2012-07-18 
hbase终于跑起来了 续其实在前面还有一段,没有保存下当时的经历,现在将配置项保存一下首先好像遇到过一个

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

目前疑问中

热点排行