HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

couchdb — Command-line interface for Apache CouchDB database server. More information: <https://manned.org/cou

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandlineinterfacecliapacheforcouchdb

Problem

How to use the couchdb command: Command-line interface for Apache CouchDB database server. More information: <https://manned.org/couchdb>.

Solution

couchdb — Command-line interface for Apache CouchDB database server. More information: <https://manned.org/couchdb>.

Start CouchDB:
couchdb


Start CouchDB interactive shell:
couchdb -i


Start CouchDB as a background process:
couchdb -b


Kill the background process (Note: It will respawn if needed):
couchdb -k


Shutdown the background process:
couchdb -d

Code Snippets

Start CouchDB

couchdb

Start CouchDB interactive shell

couchdb -i

Start CouchDB as a background process

couchdb -b

Kill the background process (Note: It will respawn if needed)

couchdb -k

Shutdown the background process

couchdb -d

Context

tldr-pages: common/couchdb

Revisions (0)

No revisions yet.