From commits-return-1479-apmail-couchdb-commits-archive=couchdb.apache.org@couchdb.apache.org Sat Dec 13 21:12:48 2008 Return-Path: Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: (qmail 44989 invoked from network); 13 Dec 2008 21:12:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Dec 2008 21:12:47 -0000 Received: (qmail 41643 invoked by uid 500); 13 Dec 2008 21:13:00 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 41613 invoked by uid 500); 13 Dec 2008 21:13:00 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 41604 invoked by uid 500); 13 Dec 2008 21:13:00 -0000 Delivered-To: apmail-incubator-couchdb-commits@incubator.apache.org Received: (qmail 41601 invoked by uid 99); 13 Dec 2008 21:13:00 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 13 Dec 2008 13:13:00 -0800 X-ASF-Spam-Status: No, hits=1.5 required=10.0 tests=WEIRD_PORT 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, 13 Dec 2008 21:12:45 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id C4E5E118D4 for ; Sat, 13 Dec 2008 21:12:24 +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, 13 Dec 2008 21:12:24 -0000 Message-ID: <20081213211224.7758.77290@eos.apache.org> Subject: [Couchdb Wiki] Update of "Installing on Fedora10" by oommoo 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 oommoo: http://wiki.apache.org/couchdb/Installing_on_Fedora10 The comment on the change is: initial text migration New page: ## The basis for this page is originally from "Installing on Fedora10" which was itself renamed from InstallingOnRHEL4 Installing on Fedora Core 10 x86_64 1. install erlang {{{ # yum install erlang }}} Note : this currently results in a version R12B-4.3.fc10. 2. install other dependencies (no external repos required). {{{ # yum install icu libicu-devel js js-devel }}} Note : this results in icu version 4.0-3.fc10 and js version 1.70-3. 3. install couchdb The code can be gotten from subversion using {{{ $ svn checkout http://svn.apache.org/repos/asf/incubator/couchdb/trunk couchdb $ cd couchdb $ ./bootstrap $ ./configure $ make && make install }}} {{{ $ wget http://www.hightechimpact.com/Apache/incubator/couchdb/0.8.1-incubating/apache-couchdb-0.8.1-incubating.tar.gz $ tar -xzvf apache-couchdb-0.8.1-incubating.tar.gz $ cd apache-couchdb-0.8.1-incubating $ ./configure $ make && make install }}} 4. create couchdb user {{{ sudo adduser -r -d /usr/local/var/lib/couchdb couchdb sudo chown -R couchdb /usr/local/var/lib/couchdb sudo chown -R couchdb /usr/local/var/log/couchdb }}} 5. (optional) edit basic settings like Port and !BindAddress {{{ vim /usr/local/etc/couchdb/couch.ini }}} 6. start CouchDB server in your terminal {{{ sudo -u couchdb couchdb }}} or as daemon {{{ sudo /usr/local/etc/rc.d/couchdb start }}} Access http://localhost:5984/_utils/index.html or http://hostname:5984/_utils/index.html if you edited the !BindAddress