diff options
author | startxfr <clarue@startx.fr> | 2014-12-06 02:51:42 +0100 |
---|---|---|
committer | startxfr <clarue@startx.fr> | 2014-12-06 02:51:42 +0100 |
commit | a7f649b8f1f56a999073550d1b91b5d8d1cd7d81 (patch) | |
tree | c7739a5c22615c3d3ca5bb59821a598e40460f02 /Services/mongo/mongodb.conf | |
parent | 076db03abf9ac12a057b784a3e0999180ca53543 (diff) | |
download | phpmyadmin-a7f649b8f1f56a999073550d1b91b5d8d1cd7d81.tar.gz phpmyadmin-a7f649b8f1f56a999073550d1b91b5d8d1cd7d81.tar.bz2 phpmyadmin-a7f649b8f1f56a999073550d1b91b5d8d1cd7d81.tar.xz phpmyadmin-a7f649b8f1f56a999073550d1b91b5d8d1cd7d81.zip |
adding functionnal mongodb server
Diffstat (limited to 'Services/mongo/mongodb.conf')
-rw-r--r-- | Services/mongo/mongodb.conf | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Services/mongo/mongodb.conf b/Services/mongo/mongodb.conf new file mode 100644 index 0000000..89d19f2 --- /dev/null +++ b/Services/mongo/mongodb.conf @@ -0,0 +1,27 @@ +## +### Config file copied into +## +bind_ip = 127.0.0.1 +port = 27017 +fork = true +pidfilepath = /var/run/mongodb/mongodb.pid +logpath = /var/log/mongodb/mongodb.log +dbpath =/var/lib/mongodb +journal = true + +# Turn on/off security. Off is currently the default +#noauth = true +#auth = true + +# Verbose logging output. +#verbose = true + +# Disable the HTTP interface (Defaults to port+1000). +nohttpinterface = true + +# Accout token for Mongo monitoring server. +#mms-token = <token> +#mms-name = container-sv-mongo +#mms-interval = 2 + +# Replication Options |