Return-Path: X-Original-To: apmail-couchdb-user-archive@www.apache.org Delivered-To: apmail-couchdb-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 063DE66CA for ; Wed, 1 Jun 2011 02:33:39 +0000 (UTC) Received: (qmail 76542 invoked by uid 500); 1 Jun 2011 02:33:36 -0000 Delivered-To: apmail-couchdb-user-archive@couchdb.apache.org Received: (qmail 76487 invoked by uid 500); 1 Jun 2011 02:33:36 -0000 Mailing-List: contact user-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@couchdb.apache.org Delivered-To: mailing list user@couchdb.apache.org Received: (qmail 76304 invoked by uid 99); 1 Jun 2011 02:33:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Jun 2011 02:33:35 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=NORMAL_HTTP_TO_IP,RCVD_IN_DNSWL_LOW,SPF_NEUTRAL,WEIRD_PORT X-Spam-Check-By: apache.org Received-SPF: neutral (athena.apache.org: local policy) Received: from [209.85.161.52] (HELO mail-fx0-f52.google.com) (209.85.161.52) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Jun 2011 02:33:31 +0000 Received: by fxm6 with SMTP id 6so5378660fxm.11 for ; Tue, 31 May 2011 19:33:09 -0700 (PDT) Received: by 10.223.17.140 with SMTP id s12mr1106880faa.49.1306895589233; Tue, 31 May 2011 19:33:09 -0700 (PDT) MIME-Version: 1.0 Received: by 10.223.70.204 with HTTP; Tue, 31 May 2011 19:32:49 -0700 (PDT) In-Reply-To: References: From: Jason Smith Date: Wed, 1 Jun 2011 09:32:49 +0700 Message-ID: Subject: Re: Installing CouchDB on CentOS 5.6 To: user@couchdb.apache.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hi, Jim. A slightly newer version is at https://github.com/iriscouch/build-couchdb. It has only minor differences. Sorry for the confusion. My feeling is build-couchdb is *easier* but not *easy* per se. Anyway, I use it every day. CentOS is a first-class platform for build-couchdb. If you (or anyone) has issues, please let me know either by email or by a GitHub bug report. Thanks! On Wed, Jun 1, 2011 at 9:18 AM, Jim R. Wilson wrot= e: > Thanks Dave, > > Looks like erlang can't find crypto:start/0: > > ** exception error: undefined function crypto:start/0 > > I'm stepping back to try build-couchdb[1] to see if that resolves the > issues. =C2=A0I'd totally be using Ubuntu if this wasn't for work, where = we've > standardized on CentOS. > > [1] https://github.com/couchone/build-couchdb > > -- Jim > > On Tue, May 31, 2011 at 10:07 PM, Dave Cottlehuber wro= te: > >> On 1 June 2011 13:49, Jim R. Wilson wrote: >> > Thanks Pasi - this is a great start. >> > >> > After download/build/installing erlang, curl and couchdb, when I run >> couchdb >> > nothing happens. =C2=A0That is, it just hangs. =C2=A0ps shows that som= e erlang >> process >> > is running, but there's no stderr or stdout. >> > >> > Did you run into this problem? =C2=A0Or, more generally, how do you >> troubleshoot >> > couchdb before it starts listening on 5984? >> > >> > Thanks in advance for any help, >> > >> > -- Jim R. Wilson (jimbojw) >> >> Common issues are missing permisssions or erlang modules that prevent >> the erlang vm from getting to start couch, or incorrect spidermonkey / >> xulrunner bits. >> >> By using couchdb -i this then provides you with access to the erlang >> shell as it starts. Then try: >> >> crypto:start(). >> couch:start(). >> >> which on my working system shows: >> >> Apache CouchDB has started. Time to relax. >> [info] [<0.36.0>] Apache CouchDB has started on http://0.0.0.0:5984/ >> >> 1> crypto:start(). >> {error,{already_started,crypto}} >> 2> couch:start(). >> {error,{already_started,couch}} >> 3> >> >> That will likely help sort out what's failing. >> >> Also check out if you've not already: >> http://wiki.apache.org/couchdb/Installing_SpiderMonkey >> http://wiki.apache.org/couchdb/Installing_on_OSX for permissions issus >> >> A+ >> Dave >> > --=20 Iris Couch