Dear Wiki user, You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.
The "Verify_and_Test_Your_Installation" page has been changed by JoanTouzet: https://wiki.apache.org/couchdb/Verify_and_Test_Your_Installation?action=diff&rev1=3&rev2=4 Comment: Nuke outdated content in prep for decom <<Include(EditTheWiki)>> + Please see our [[http://docs.couchdb.org/en/stable/install/index.html|official documentation]]. - === 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]]. -