mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
480 B
Plaintext
30 lines
480 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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`
|