瀏覽代碼

couchdb: add page

lamar-frankie 7 年之前
父節點
當前提交
7c8a7f61f0
共有 1 個文件被更改,包括 36 次插入0 次删除
  1. 36 0
      pages/common/couchdb.md

+ 36 - 0
pages/common/couchdb.md

@@ -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`
+