From commits-return-1585-apmail-couchdb-commits-archive=couchdb.apache.org@couchdb.apache.org Sat Jan 03 19:14:15 2009 Return-Path: Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: (qmail 98102 invoked from network); 3 Jan 2009 19:14:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Jan 2009 19:14:15 -0000 Received: (qmail 34101 invoked by uid 500); 3 Jan 2009 19:14:15 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 34079 invoked by uid 500); 3 Jan 2009 19:14:15 -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 34070 invoked by uid 500); 3 Jan 2009 19:14:15 -0000 Delivered-To: apmail-incubator-couchdb-commits@incubator.apache.org Received: (qmail 34067 invoked by uid 99); 3 Jan 2009 19:14:15 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Jan 2009 11:14:15 -0800 X-ASF-Spam-Status: No, hits=-1998.5 required=10.0 tests=ALL_TRUSTED,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, 03 Jan 2009 19:14:13 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 732B11115B for ; Sat, 3 Jan 2009 19:13:52 +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, 03 Jan 2009 19:13:52 -0000 Message-ID: <20090103191352.2640.68571@eos.apache.org> Subject: [Couchdb Wiki] Update of "Verify and Test Your Installation" by LukeVenediger 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 LukeVenediger: http://wiki.apache.org/couchdb/Verify_and_Test_Your_Installation The comment on the change is: Adding information about how to check that couchdb has been installed correctly. New page: === Using the Couchdb init.d script === Run this command: {{{ $ sudo /etc/init.d/couchdb status }}} You should see a message like this: {{{ Apache CouchDB is running as process 15102, time to relax. }}} === Using curl === Use { { {curl} } } to access your Couchdb instance. It will bind to { { {localhost} } } on port '''5984''' by default. Run this command: {{{ $ curl http://localhost:5984/ }}} You should see a message like this (the version may differ): {{{ {"couchdb":"Welcome","version":"0.9.0a729754-incubating","start_time":"Sat, 03 Jan 2009 16:41:48 GMT"} }}} === Starting Couchdb === Start Couchdb by issuing the following command: {{{ $ sudo /etc/init.d/couchdb start }}} You should see this message: {{{ Apache CouchDB has started. Time to relax. }}} Open Futon and browse your Couchdb database: http://localhost:5984/_utils/ Read more about Futon in ["Getting started with Futon"].