Return-Path: Delivered-To: apmail-hadoop-core-commits-archive@www.apache.org Received: (qmail 59831 invoked from network); 29 Aug 2008 06:10:14 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 29 Aug 2008 06:10:14 -0000 Received: (qmail 263 invoked by uid 500); 29 Aug 2008 06:10:12 -0000 Delivered-To: apmail-hadoop-core-commits-archive@hadoop.apache.org Received: (qmail 235 invoked by uid 500); 29 Aug 2008 06:10:12 -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 226 invoked by uid 99); 29 Aug 2008 06:10:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 28 Aug 2008 23:10:12 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED 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; Fri, 29 Aug 2008 06:09:15 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 867CC1115B for ; Fri, 29 Aug 2008 06:09:45 +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: Fri, 29 Aug 2008 06:09:45 -0000 Message-ID: <20080829060945.703.25314@eos.apache.org> Subject: [Hadoop Wiki] Trivial Update of "GettingStartedWithHadoop" by AlexLoddengaard 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 AlexLoddengaard: http://wiki.apache.org/hadoop/GettingStartedWithHadoop ------------------------------------------------------------------------------ === Separating Configuration from Installation === In the example described above, the configuration files used by the Hadoop cluster all lie in the Hadoop installation. This can become cumbersome when upgrading to a new release since all custom config has to be re-created in the new installation. It is possible to separate the config from the install. To do so, select a - directory to house Hadoop configuration (let's say {{{/foo/bar/hadoop-config}}}. Copy the {{{hadoop-site.xml, slaves}}} and {{{hadoop-env.sh}}} files to this directory. You can either set the {{{HADOOP_CONF_DIR}}} environment variable to refer to this directory or pass it directly to the Hadoop scripts with the {{{--config}}} option. + directory to house Hadoop configuration (let's say {{{/foo/bar/hadoop-config}}}. Copy all conf files to this directory. You can either set the {{{HADOOP_CONF_DIR}}} environment variable to refer to this directory or pass it directly to the Hadoop scripts with the {{{--config}}} option. In this case, the cluster start and stop commands specified in the above two sub-sections become [[BR]] {{{% $HADOOP_INSTALL/hadoop/bin/start-all.sh --config /foo/bar/hadoop-config}}} and [[BR]] {{{% $HADOOP_INSTALL/hadoop/bin/stop-all.sh --config /foo/bar/hadoop-config}}}. [[BR]] Only the absolute path to the config directory should be passed to the scripts. === Starting up a larger cluster ===