Hbase master not running in pseudo-distributed modeHbase installation failureHbase 0.90.2 doesn't starthadoop : datanode not running?Unable to execute command start-all.sh in HadoopHow to uninstall Hbase from Ubuntu?HBase not connecting to ZooKeeperThe node /hbase-unsecure is not in ZooKeeper. Check the value configured in 'zookeeper.znode.parent'adduser fails when relating hadoop-plugin to hbase-masterAvoid entering password when launching Hadoop in Pseudo-distributed modehadoop-datanode is not running
How to help a male-presenting person shop for women's clothes?
Students requesting to switch partners mid term
Runge-Kutta in the presence of an attractor
Why was it improper to stick out a thumb in the Temple?
What does "two ells within the selvages" mean in the Magna Carta?
Risk Neutral and Real World Valuations using Monte Carlo
How many cows would you need to drop on Mars to successfully terraform it?
What is the rationale for single engine military aircraft?
How to create a new file via touch if it is in a directory which doesn't exist?
What does the fraction math node do?
Mindslavering a Mindslavered player?
Not registering my US born child of 1 US parent as a US citizen
Why give an android emotions?
Is there a guide/reference for character hairstyle possible in D&D Forgotten Realms universe?
Does this code demonstrate the central limit theorem?
Regions in 3D acting strange with cuboids
Don't let this riddle put you in a foul mood
Brainfuck interpreter written in C
Why are compartments in western European day trains falling out of fashion?
Merging rectangles in c++
How can an AI train itself if no one is telling it if its answer is correct or wrong?
Why should interrupts be short in well configured system?
How can I justify this without determining the determinant?
How can I run a realistic open-world game with vast power differences, without resulting in constant TPKs?
Hbase master not running in pseudo-distributed mode
Hbase installation failureHbase 0.90.2 doesn't starthadoop : datanode not running?Unable to execute command start-all.sh in HadoopHow to uninstall Hbase from Ubuntu?HBase not connecting to ZooKeeperThe node /hbase-unsecure is not in ZooKeeper. Check the value configured in 'zookeeper.znode.parent'adduser fails when relating hadoop-plugin to hbase-masterAvoid entering password when launching Hadoop in Pseudo-distributed modehadoop-datanode is not running
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
I am trying to run Hbase in a pseudo-distributed mode. I followed the link http://archanaschangale.wordpress.com/2013/08/31/installing-pseudo-distributed-hbase-on-ubuntu/
I am using ubuntu version 12.04
Hbase version 0.94.8
Hadoop Version 2.4.0
In hbase/conf/hbase-env.sh, i added the following
export JAVA_HOME=/usr/lib/jvm/jdk1.7.0_25
export HBASE_REGIONSERVERS=/usr/lib/hbase/hbase-0.94.8/conf/regionservers
export HBASE_MANAGES_ZK=true
Then I set the HBASE_HOME path in bashrc file
In hbase/conf/hbase-site.xml
I added the following,
<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.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/prashasti/Installed/hbase-0.94.8/HBASE/zookeeper</value>
</property>
</configuration>
To prevent version mismatch between hadoop and hbase, I added
hadoop-common-2.4.0.jar
and
hadoop-mapreduce-client-core-2.4.0.jar in hbase/lib folder
When I start hbase using
$./bin/start-hbase.sh
No error turns up, but the Hmaster doesn't start.
hadoop
add a comment
|
I am trying to run Hbase in a pseudo-distributed mode. I followed the link http://archanaschangale.wordpress.com/2013/08/31/installing-pseudo-distributed-hbase-on-ubuntu/
I am using ubuntu version 12.04
Hbase version 0.94.8
Hadoop Version 2.4.0
In hbase/conf/hbase-env.sh, i added the following
export JAVA_HOME=/usr/lib/jvm/jdk1.7.0_25
export HBASE_REGIONSERVERS=/usr/lib/hbase/hbase-0.94.8/conf/regionservers
export HBASE_MANAGES_ZK=true
Then I set the HBASE_HOME path in bashrc file
In hbase/conf/hbase-site.xml
I added the following,
<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.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/prashasti/Installed/hbase-0.94.8/HBASE/zookeeper</value>
</property>
</configuration>
To prevent version mismatch between hadoop and hbase, I added
hadoop-common-2.4.0.jar
and
hadoop-mapreduce-client-core-2.4.0.jar in hbase/lib folder
When I start hbase using
$./bin/start-hbase.sh
No error turns up, but the Hmaster doesn't start.
hadoop
add a comment
|
I am trying to run Hbase in a pseudo-distributed mode. I followed the link http://archanaschangale.wordpress.com/2013/08/31/installing-pseudo-distributed-hbase-on-ubuntu/
I am using ubuntu version 12.04
Hbase version 0.94.8
Hadoop Version 2.4.0
In hbase/conf/hbase-env.sh, i added the following
export JAVA_HOME=/usr/lib/jvm/jdk1.7.0_25
export HBASE_REGIONSERVERS=/usr/lib/hbase/hbase-0.94.8/conf/regionservers
export HBASE_MANAGES_ZK=true
Then I set the HBASE_HOME path in bashrc file
In hbase/conf/hbase-site.xml
I added the following,
<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.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/prashasti/Installed/hbase-0.94.8/HBASE/zookeeper</value>
</property>
</configuration>
To prevent version mismatch between hadoop and hbase, I added
hadoop-common-2.4.0.jar
and
hadoop-mapreduce-client-core-2.4.0.jar in hbase/lib folder
When I start hbase using
$./bin/start-hbase.sh
No error turns up, but the Hmaster doesn't start.
hadoop
I am trying to run Hbase in a pseudo-distributed mode. I followed the link http://archanaschangale.wordpress.com/2013/08/31/installing-pseudo-distributed-hbase-on-ubuntu/
I am using ubuntu version 12.04
Hbase version 0.94.8
Hadoop Version 2.4.0
In hbase/conf/hbase-env.sh, i added the following
export JAVA_HOME=/usr/lib/jvm/jdk1.7.0_25
export HBASE_REGIONSERVERS=/usr/lib/hbase/hbase-0.94.8/conf/regionservers
export HBASE_MANAGES_ZK=true
Then I set the HBASE_HOME path in bashrc file
In hbase/conf/hbase-site.xml
I added the following,
<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.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/prashasti/Installed/hbase-0.94.8/HBASE/zookeeper</value>
</property>
</configuration>
To prevent version mismatch between hadoop and hbase, I added
hadoop-common-2.4.0.jar
and
hadoop-mapreduce-client-core-2.4.0.jar in hbase/lib folder
When I start hbase using
$./bin/start-hbase.sh
No error turns up, but the Hmaster doesn't start.
hadoop
hadoop
edited Jul 9 '14 at 13:24
Prashasti
asked Jul 9 '14 at 11:53
PrashastiPrashasti
132 silver badges6 bronze badges
132 silver badges6 bronze badges
add a comment
|
add a comment
|
1 Answer
1
active
oldest
votes
This question is bit old. I am answering so that it might help someone else...
The problem appears to be a mismatch between Hadoop version and HBase version. Changing the jars inside hbase/lib folder will not help as those jars are only used in standalone mode.
You need to recompile HBase as specified here http://hbase.apache.org/book.html#basic.prerequisites
add a comment
|
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f493590%2fhbase-master-not-running-in-pseudo-distributed-mode%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This question is bit old. I am answering so that it might help someone else...
The problem appears to be a mismatch between Hadoop version and HBase version. Changing the jars inside hbase/lib folder will not help as those jars are only used in standalone mode.
You need to recompile HBase as specified here http://hbase.apache.org/book.html#basic.prerequisites
add a comment
|
This question is bit old. I am answering so that it might help someone else...
The problem appears to be a mismatch between Hadoop version and HBase version. Changing the jars inside hbase/lib folder will not help as those jars are only used in standalone mode.
You need to recompile HBase as specified here http://hbase.apache.org/book.html#basic.prerequisites
add a comment
|
This question is bit old. I am answering so that it might help someone else...
The problem appears to be a mismatch between Hadoop version and HBase version. Changing the jars inside hbase/lib folder will not help as those jars are only used in standalone mode.
You need to recompile HBase as specified here http://hbase.apache.org/book.html#basic.prerequisites
This question is bit old. I am answering so that it might help someone else...
The problem appears to be a mismatch between Hadoop version and HBase version. Changing the jars inside hbase/lib folder will not help as those jars are only used in standalone mode.
You need to recompile HBase as specified here http://hbase.apache.org/book.html#basic.prerequisites
answered Mar 1 '15 at 19:50
SenSen
1
1
add a comment
|
add a comment
|
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f493590%2fhbase-master-not-running-in-pseudo-distributed-mode%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown