After extracting, changing etc/hosts file, made some changes in
hdfs-site.xml file and hbase-env.sh file. I cant see any of hbase process
running after issuing bin/start-hbase.sh command.

my hdfs-site.xml file is
<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
<configuration>
 
  <property>
          <name>hbase.rootdir</name>
          <value>hdfs://localhost:9000/hbase</value>
  </property>
  
  <property>
          <name>hbase.cluster.distributed</name>
          <value>true</value>
  </property>
  
  <property>
           <name>hbase.master</name>
           <value>localhost:60010</value>
  </property>
  
  <property>
          <name>hbase.zookeeper.quorum</name>
          <value>localhost</value>
  </property>
  
  <property>
           <name>dfs.replication</name>
           <value>1</value>
  </property>
  
  <property>
           <name>hbase.zookeeper.property.clientPort</name>
           <value>2181</value>
  </property>

  <property>
           <name>hbase.zookeeper.property.dataDir</name>
           <value>/home/hduser/hbase/zookeeper</value>
  </property>

</configuration>


my hbase-env.sh is
export HBASE_REGIONSERVERS=${HBASE_HOME}/conf/regionservers
export JAVA_HOME=/usr/local/java/jdk1.7.0
export HBASE_OPTS="-XX:+UseConcMarkSweepGC"
export HBASE_REGIONSERVERS=${HBASE_HOME}/conf/regionservers
export HBASE_MANAGES_ZK=false


I have also enivronment variable
export PATH=$PATH:$HADOOP_PREFIX/bin
export HBASE_HOME="/usr/local/hbase"
export PATH=$PATH:$HBASE_HOME/bin
export ZOOKEEPER_HOME="/usr/local/zookeeper"
export PATH=$PATH:$ZOOKEEPER_HOME/bin

but still i cant see any hbase process when i type jps in terminal.

Reply via email to