Return-Path: Delivered-To: apmail-incubator-couchdb-commits-archive@locus.apache.org Received: (qmail 44746 invoked from network); 30 Mar 2008 00:04:19 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 30 Mar 2008 00:04:19 -0000 Received: (qmail 65362 invoked by uid 500); 30 Mar 2008 00:04:18 -0000 Delivered-To: apmail-incubator-couchdb-commits-archive@incubator.apache.org Received: (qmail 65339 invoked by uid 500); 30 Mar 2008 00:04:18 -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 65330 invoked by uid 99); 30 Mar 2008 00:04:18 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 29 Mar 2008 17:04:18 -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; Sun, 30 Mar 2008 00:03:24 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 505B2D2EB for ; Sun, 30 Mar 2008 00:03:44 +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: Sun, 30 Mar 2008 00:03:44 -0000 Message-ID: <20080330000344.6143.89834@eos.apache.org> Subject: [Couchdb Wiki] Update of "Troubleshooting" by NoahSlater 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 NoahSlater: http://wiki.apache.org/couchdb/Troubleshooting The comment on the change is: Moving to the main CouchDB website ------------------------------------------------------------------------------ - A step by step troubleshooting guide for CouchDB. + deleted - == Updated Source == - - Have you built CouchDB from the Subversion repository? Did you do a ''svn up'' that seemed to break everything? - - After every update you must run the following command: - - {{{ - ./bootstrap -C - }}} - - If you still have problems building try the next troubleshooting tip. - - == First Run == - - Having problems getting CouchDB to run for the first time? - - Follow this simple procedure and report back to mailing list (or IRC) with the output of each step. - - 1. Note down the name of your operating system and your processor architecture. - 2. Note down the installed versions of CouchDB's dependancies - 3. Checkout a fresh version from Subversion - - {{{ - svn checkout http://couchdb.googlecode.com/svn/trunk/ couchdb - }}} - - 4. Bootstrap from the couchdb directory - - {{{ - ./bootstrap -C - }}} - - 5. Build into a temporary directory - - {{{ - ./configure --prefix=/tmp/couchdb && make && make install - }}} - - 6. Run the ''couchdb'' command and log the output - - {{{ - /tmp/couchdb/bin/couchdb - }}} - - 7. Use your system's kernel trace tool and log the output of the above command - - 1. Linux systems should use strace - - {{{ - strace /tmp/couchdb/bin/couchdb 2> strace.out - }}} - - 2. Please add documentation for ''your'' system... - - 8. Report back to the mailing list (or IRC) with the output from each step. -