Return-Path: Delivered-To: apmail-incubator-couchdb-commits-archive@locus.apache.org Received: (qmail 79460 invoked from network); 1 Nov 2008 23:22:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Nov 2008 23:22:39 -0000 Received: (qmail 41911 invoked by uid 500); 1 Nov 2008 23:22:45 -0000 Delivered-To: apmail-incubator-couchdb-commits-archive@incubator.apache.org Received: (qmail 41891 invoked by uid 500); 1 Nov 2008 23:22:45 -0000 Mailing-List: contact couchdb-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: couchdb-dev@incubator.apache.org Delivered-To: mailing list couchdb-commits@incubator.apache.org Received: (qmail 41882 invoked by uid 99); 1 Nov 2008 23:22:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Nov 2008 16:22:44 -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; Sat, 01 Nov 2008 23:21:37 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 7121A1114F for ; Sat, 1 Nov 2008 23:21:48 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: couchdb-commits@incubator.apache.org Date: Sat, 01 Nov 2008 23:21:48 -0000 Message-ID: <20081101232148.28126.54709@eos.apache.org> Subject: [Couchdb Wiki] Update of "Installing on RHEL5" by MartinCzura X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification. The following page has been changed by MartinCzura: http://wiki.apache.org/couchdb/Installing_on_RHEL5 The comment on the change is: page creation New page: Installing on RHEL5 x86_64 1. Install prerequisites. You will need EPEL for js and erlang. {{{ yum install ncurses-devel openssl-devel icu libicu-devel js js-devel curl-devel erlang }}} 2. Install couchdb {{{ svn checkout http://svn.apache.org/repos/asf/incubator/couchdb/trunk couchdb cd couchdb ./bootstrap ./configure && make && make install }}} 3. Edit config file to suit {{{ vi /usr/local/etc/couchdb/couch.ini }}} 4. Create users, chown directories {{{ adduser -r -d /usr/local/var/lib/couchdb couchdb chown -R couchdb /usr/local/var/lib/couchdb chown -R couchdb /usr/local/var/log/couchdb }}} 5. Launch! In console: {{{ sudo -u couchdb couchdb }}} or as daemon: {{{ sudo /usr/local/etc/rc.d/couchdb start }}}