mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 18:42:07 +02:00
24 lines
387 B
Markdown
24 lines
387 B
Markdown
# couchdb
|
|
|
|
> Command-line interface for Apache CouchDB database server.
|
|
> More information: <https://couchdb.apache.org>.
|
|
|
|
- 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`
|