Return-Path: X-Original-To: apmail-hbase-user-archive@www.apache.org Delivered-To: apmail-hbase-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 13001717E for ; Fri, 30 Sep 2011 08:03:55 +0000 (UTC) Received: (qmail 45572 invoked by uid 500); 30 Sep 2011 08:03:52 -0000 Delivered-To: apmail-hbase-user-archive@hbase.apache.org Received: (qmail 45474 invoked by uid 500); 30 Sep 2011 08:03:50 -0000 Mailing-List: contact user-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@hbase.apache.org Delivered-To: mailing list user@hbase.apache.org Received: (qmail 45379 invoked by uid 99); 30 Sep 2011 08:03:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Sep 2011 08:03:46 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of dejan.menges@gmail.com designates 209.85.213.169 as permitted sender) Received: from [209.85.213.169] (HELO mail-yx0-f169.google.com) (209.85.213.169) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Sep 2011 08:03:40 +0000 Received: by yxi19 with SMTP id 19so1782210yxi.14 for ; Fri, 30 Sep 2011 01:03:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=YMTNElJfszJea8HXL0lumJILOWwqZRN//YQnxDO+x3w=; b=Ex/9S1eUymDUZahnMN8gajXvL1Q437GUrt1EKZRr0amb+OTE2QUHYxS+7ktU/0Ama3 gcArOEH7vV+m1PqL/bJz8cCt9ziWsVYFT27xymVPROCLdCRdtMnOC281e+84qtx8K9D4 T1GMp86anDKWPBvB7Zt4AKy+/wFMtQVD6XHNo= Received: by 10.236.187.70 with SMTP id x46mr70596602yhm.71.1317369799085; Fri, 30 Sep 2011 01:03:19 -0700 (PDT) MIME-Version: 1.0 Received: by 10.236.209.33 with HTTP; Fri, 30 Sep 2011 01:02:59 -0700 (PDT) In-Reply-To: <4E856781.7060609@hiro-tan.org> References: <4E856781.7060609@hiro-tan.org> From: Dejan Menges Date: Fri, 30 Sep 2011 10:02:59 +0200 Message-ID: Subject: Re: Installing as standalone on mac To: user@hbase.apache.org Content-Type: multipart/alternative; boundary=20cf305b12c2e98e5b04ae240ecd X-Virus-Checked: Checked by ClamAV on apache.org --20cf305b12c2e98e5b04ae240ecd Content-Type: text/plain; charset=ISO-8859-1 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 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 > 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 > > --20cf305b12c2e98e5b04ae240ecd--