You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@hbase.apache.org by gerberdata <dg...@socal.rr.com> on 2011/09/30 06:18:22 UTC

Installing as standalone on mac

I am trying to install hbase and hadoop on as standalone on mac.  Is there any tutorial that will show me the best way to do this.
I

Re: Installing as standalone on mac

Posted by Ashish <pa...@gmail.com>.
On Fri, Sep 30, 2011 at 9:48 AM, gerberdata <dg...@socal.rr.com> wrote:
> I am trying to install hbase and hadoop on as standalone on mac.  Is there any tutorial that will show me the best way to do this.
> I

http://hbase.apache.org/book/book.html

Chapter 1 and 2 shall do.

-- 
thanks
ashish

Blog: http://www.ashishpaliwal.com/blog
My Photo Galleries: http://www.pbase.com/ashishpaliwal

Re: Installing as standalone on mac

Posted by Tsuyoshi OZAWA <oz...@gmail.com>.
On Fri, Sep 30, 2011 at 1:18 PM, gerberdata <dg...@socal.rr.com> wrote:
> I am trying to install hbase and hadoop on as standalone on mac.  Is there any tutorial that will show me the best way to do this.
> I

I dont know the mac-specific tutorial, however, you can use homebrew
for installing hbase.

$ brew install hbase

After that, you can use hbase command.

$ hbase --help
shows you how to use basic commands to run hbase.
-- 
OZAWA Tsuyoshi

Re: Installing as standalone on mac

Posted by Jean-Daniel Cryans <jd...@apache.org>.
Have you taken a look at the online book? Like this:
http://hbase.apache.org/book/getting_started.html

J-D

On Thu, Sep 29, 2011 at 9:18 PM, gerberdata <dg...@socal.rr.com> wrote:
> I am trying to install hbase and hadoop on as standalone on mac.  Is there any tutorial that will show me the best way to do this.
> I

Re: Installing as standalone on mac

Posted by Eugene Koontz <ek...@hiro-tan.org>.
On 9/30/11 1:02 AM, Dejan Menges wrote:
> Just be sure to comment localhost for IPv6 in /etc/hosts, or you will have
> lot of issues :)
Hi Dejan,

Really? I have both (IPv6) "::1 localhost.localdomain localhost" as well 
as (IPv4) "127.0.0.1 localhost.localdomain localhost" in my /etc/hosts 
of my Mac, and everything works fine.

> On Fri, Sep 30, 2011 at 8:53 AM, Eugene Koontz<ek...@hiro-tan.org>  wrote:
>
>
> works for me. Make sure you have git and Apache Maven in your path ("which
> javac" and "which mvn").
btw I meant "which git" here of course, though you need javac too, 
obviously.

-Eugene

Re: Installing as standalone on mac

Posted by Dejan Menges <de...@gmail.com>.
Just be sure to comment localhost for IPv6 in /etc/hosts, or you will have
lot of issues :)

Regards,
Dejo

On Fri, Sep 30, 2011 at 8:53 AM, Eugene Koontz <ek...@hiro-tan.org> wrote:

> On 9/29/11 9:18 PM, gerberdata wrote:
>
>> I am trying to install hbase and hadoop on as standalone on mac.  Is there
>> any tutorial that will show me the best way to do this.
>> I
>>
> The book advises starting with downloading the latest stable binary
> release, but you might be interested in building from source. The following
> works for me. Make sure you have git and Apache Maven in your path ("which
> javac" and "which mvn").
>
> Then do :
>
> git clone https://github.com/apache/**hbase.git<https://github.com/apache/hbase.git>
> cd hbase
> mvn clean compile
> bin/hbase master start
> (^^^ this starts the HBase cluster in the foreground).
>
> You should now be able to access your standalone HBase cluster's web UI at:
> http://localhost:60010 .
>
> You could now open up another shell and continue on with the book at:
> http://hbase.apache.org/book/**quickstart.html#shell_**exercises<http://hbase.apache.org/book/quickstart.html#shell_exercises>.
>
> -Eugene
>
>

Re: Installing as standalone on mac

Posted by Eugene Koontz <ek...@hiro-tan.org>.
On 9/29/11 9:18 PM, gerberdata wrote:
> I am trying to install hbase and hadoop on as standalone on mac.  Is there any tutorial that will show me the best way to do this.
> I
The book advises starting with downloading the latest stable binary 
release, but you might be interested in building from source. The 
following works for me. Make sure you have git and Apache Maven in your 
path ("which javac" and "which mvn").

Then do :

git clone https://github.com/apache/hbase.git
cd hbase
mvn clean compile
bin/hbase master start
(^^^ this starts the HBase cluster in the foreground).

You should now be able to access your standalone HBase cluster's web UI 
at: http://localhost:60010 .

You could now open up another shell and continue on with the book at: 
http://hbase.apache.org/book/quickstart.html#shell_exercises .

-Eugene