Hi Rajkumar, bq. my hdfs-site.xml file is The configurations you have mentioned should be in hbase-site.xml. Can you check zk quorum,Namenode and DataNode are running fine? One more thing is fs.defaultFs or fs.default.name in core-site.xml of hadoop should be hdfs://localhost:9000/
<property> <name>fs.default.name</name> <value>hdfs://localhost:9000/</value> </property> ________________________________________ From: Rajkumar [[email protected]] Sent: Sunday, June 23, 2013 10:24 AM To: [email protected] Subject: Hbase pseudo distributed setup not starting 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.
