From commits-return-4694-apmail-couchdb-commits-archive=couchdb.apache.org@couchdb.apache.org Fri Jul 09 18:21:40 2010 Return-Path: Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: (qmail 65452 invoked from network); 9 Jul 2010 18:21:40 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 9 Jul 2010 18:21:40 -0000 Received: (qmail 34406 invoked by uid 500); 9 Jul 2010 18:21:40 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 34307 invoked by uid 500); 9 Jul 2010 18:21:39 -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 34300 invoked by uid 500); 9 Jul 2010 18:21:39 -0000 Delivered-To: apmail-incubator-couchdb-commits@incubator.apache.org Received: (qmail 34297 invoked by uid 99); 9 Jul 2010 18:21:39 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 09 Jul 2010 18:21:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED,NORMAL_HTTP_TO_IP,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; Fri, 09 Jul 2010 18:21:37 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 0660517D1D; Fri, 9 Jul 2010 18:20:45 +0000 (GMT) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Apache Wiki To: Apache Wiki Date: Fri, 09 Jul 2010 18:20:45 -0000 Message-ID: <20100709182045.4279.66806@eos.apache.org> Subject: =?utf-8?q?=5BCouchdb_Wiki=5D_Update_of_=22Installing=5Fon=5FUbuntu=22_by_?= =?utf-8?q?afters?= 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 c= hange notification. The "Installing_on_Ubuntu" page has been changed by afters. The comment on this change is: another way to install couch on Ubuntu. http://wiki.apache.org/couchdb/Installing_on_Ubuntu?action=3Ddiff&rev1=3D31= &rev2=3D32 -------------------------------------------------- # Verify couchdb is running curl http://127.0.0.1:5984/ # {"couchdb":"Welcome","version":"0.11.0"} + }}} + =3D=3D=3D Installing CouchDB from source on Ubuntu 10.04 (Example 2): = =3D=3D=3D + =3D=3D=3D=3D Dependencies: =3D=3D=3D=3D + First, install SpiderMonkey, as described [[Installing_SpiderMonkey|here]= ] (this should prevent the possible xulrunner issues described later). + = + Second, install the rest of the dependencies: + = + {{{ + sudo apt-get install libicu-dev libcurl4-gnutls-dev libtool erlang-dev er= lang + }}} + =3D=3D=3D Installation: =3D=3D=3D + {{{ + couch_v=3D'0.11.0' + prefix=3D'/usr/local' + = + # install: + tar zxvf apache-couchdb-${couch_v}.tar.gz + cd apache-couchdb-${couch_v} + ./configure --prefix=3D${prefix} + make && sudo make install + # add couchdb user: + sudo useradd -d ${prefix}/var/lib/couchdb couchdb + = + # correct permissions: + sudo chown -R couchdb: ${prefix}/var/{lib,log}/couchdb }}} =3D=3D=3D Additional Notes =3D=3D=3D =3D=3D=3D=3D Problems with libmozjs and xulrunner? =3D=3D=3D=3D