Return-Path: Delivered-To: apmail-incubator-couchdb-commits-archive@locus.apache.org Received: (qmail 48058 invoked from network); 31 Mar 2008 00:46:10 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 31 Mar 2008 00:46:10 -0000 Received: (qmail 54013 invoked by uid 500); 31 Mar 2008 00:46:09 -0000 Delivered-To: apmail-incubator-couchdb-commits-archive@incubator.apache.org Received: (qmail 53992 invoked by uid 500); 31 Mar 2008 00:46:09 -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 53983 invoked by uid 99); 31 Mar 2008 00:46:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 30 Mar 2008 17:46:09 -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; Mon, 31 Mar 2008 00:45:16 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 17A22D2EB for ; Mon, 31 Mar 2008 00:45:36 +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: Mon, 31 Mar 2008 00:45:35 -0000 Message-ID: <20080331004535.24555.3110@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: Copied from TROUBLESHOOTING in the source ------------------------------------------------------------------------------ - A step by step troubleshooting guide for CouchDB. + == Upgrade == - == Updated Source == + Have you built CouchDB from the Subversion repository? - Have you built CouchDB from the Subversion repository? Did you do a ''svn up'' that seemed to break everything? + Did you do a `svn up` that seemed to break everything? After every update you must run the following command: @@ -18, +18 @@ 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. + 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 + 2. Note down the installed versions of CouchDB's dependancies. - {{{ - svn checkout http://couchdb.googlecode.com/svn/trunk/ couchdb - }}} + 3. Follow the [http://incubator.apache.org/couchdb/community/code.html checkout instructions] to get a fresh copy of trunk. + - 4. Bootstrap from the couchdb directory + 4. Bootstrap from the `couchdb` directory: {{{ ./bootstrap -C }}} - 5. Build into a temporary directory + 5. Build into a temporary directory: {{{ ./configure --prefix=/tmp/couchdb && make && make install }}} - 6. Run the ''couchdb'' command and log the output + 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 + 7. Use your system's kernel trace tool and log the output of the above command. - 1. Linux systems should use strace + 1. Linux systems should use strace: {{{ strace /tmp/couchdb/bin/couchdb 2> strace.out }}} - 2. Please add documentation for ''your'' system... + 2. Please add documentation for your system... 8. Report back to the mailing list (or IRC) with the output from each step.