forked from tldr-pages/tldr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4510294
commit 7c8a7f6
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# couchdb | ||
|
||
> This is the command line interface for Apache CouchDB database server. | ||
- Add a configuration file to chain: | ||
|
||
`couchdb -a {{path/to/file}}` | ||
|
||
- Add a configuration directory to chain: | ||
|
||
`couchdb -A {{path/to/file}}` | ||
|
||
- Enter the interactive Erlang shell: | ||
|
||
`couchdb -i` | ||
|
||
- Redirect output from couchdb.stdout to file: | ||
|
||
`couchdb -o {{path/to/file}}` | ||
|
||
- Redirect errors from couchdb.stderr to file: | ||
|
||
`couchdb -e {{path/to/file}}` | ||
|
||
- Display the status of the background process: | ||
|
||
`couchdb -s` | ||
|
||
- Kill the background process (Note: It will respawn if needed): | ||
|
||
`couchdb -k` | ||
|
||
- Shutdown the background process: | ||
|
||
`couchdb -d` | ||
|