1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/couchdb.md

25 lines
387 B
Markdown
Raw Normal View History

2017-10-18 10:33:21 -04:00
# couchdb
2017-10-20 11:35:15 +05:30
> Command line interface for Apache CouchDB database server.
2019-06-09 00:05:29 +01:00
> More information: <https://couchdb.apache.org>.
2017-10-18 10:33:21 -04:00
2017-10-19 08:34:13 -04:00
- Start couchdb:
2017-10-18 10:33:21 -04:00
2017-10-19 08:34:13 -04:00
`couchdb`
2017-10-18 10:33:21 -04:00
2017-10-19 08:34:13 -04:00
- Start couchdb interactive shell:
2017-10-18 10:33:21 -04:00
`couchdb -i`
2017-10-19 08:34:13 -04:00
- Start couchdb as a background process:
2017-10-18 10:33:21 -04:00
2017-10-19 08:34:13 -04:00
`couchdb -b`
2017-10-18 10:33:21 -04:00
- Kill the background process (Note: It will respawn if needed):
`couchdb -k`
- Shutdown the background process:
`couchdb -d`