Return-Path: Delivered-To: apmail-hadoop-core-commits-archive@www.apache.org Received: (qmail 73178 invoked from network); 9 Oct 2008 18:22:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Oct 2008 18:22:33 -0000 Received: (qmail 17178 invoked by uid 500); 9 Oct 2008 18:22:32 -0000 Delivered-To: apmail-hadoop-core-commits-archive@hadoop.apache.org Received: (qmail 17148 invoked by uid 500); 9 Oct 2008 18:22:32 -0000 Mailing-List: contact core-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-commits@hadoop.apache.org Received: (qmail 17139 invoked by uid 99); 9 Oct 2008 18:22:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Oct 2008 11:22:32 -0700 X-ASF-Spam-Status: No, hits=-1999.9 required=10.0 tests=ALL_TRUSTED,DNS_FROM_SECURITYSAGE X-Spam-Check-By: apache.org Received: from [140.211.11.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Oct 2008 18:21:28 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 77134118E5 for ; Thu, 9 Oct 2008 18:21:34 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: core-commits@hadoop.apache.org Date: Thu, 09 Oct 2008 18:21:34 -0000 Message-ID: <20081009182134.29044.63810@eos.apache.org> Subject: [Hadoop Wiki] Trivial Update of "Hbase/10Minutes" by stack X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification. The following page has been changed by stack: http://wiki.apache.org/hadoop/Hbase/10Minutes ------------------------------------------------------------------------------ 1. If running a remote HDFS that you want hbase to connnect to, edit {{{conf/hbase-site.xml}}} and add a property for {{{hbase.rootdir}}}. Set it to {{{hdfs://NAMENODE_HOST:NAMENODE_PORT/HBASE_ROOTDIR}}}. For example, {{{hdfs://localhost:9000/hbase}}}. Otherwise, use the default: {{{file:///tmp/hbase-${user.home}/hbase}}} UNLESS you are running on windows (TODO: Restore what you do here when on windows -- St.Ack). 1. Edit {{{conf/hbase-env.sh}}} and define {{{JAVA_HOME}}} 1. Start hbase with ~/hbase/bin/start-hbase.sh (hbase logs are viewable in ~/hbase/logs by default) - 1. Enter hbase shell by running ~/hbase/bin/hbase shell + 1. Enter hbase shell by running ~/hbase/bin/hbase shell; type 'help' to see shell help 1. Have fun with hbase 1. Stop the hbase servers with ~/hbase/bin/stop-hbase.sh. Wait until the servers are finished stopping. Avoid killing servers (though a 'kill pid' should be fine as opposed to a 'kill -9 pid').