Added mongodb module
This commit is contained in:
parent
0b171dfb28
commit
b3446cb48e
2 changed files with 81 additions and 0 deletions
23
mongodb/files/mongodb.conf
Normal file
23
mongodb/files/mongodb.conf
Normal file
|
@ -0,0 +1,23 @@
|
|||
# mongodb.conf
|
||||
|
||||
#where to log
|
||||
logpath=/var/log/mongodb/mongodb.log
|
||||
|
||||
# fork and run in background
|
||||
fork = true
|
||||
|
||||
bind_ip = 127.0.0.1
|
||||
port = 27017
|
||||
|
||||
dbpath=/srv/mongodb
|
||||
|
||||
pidfilepath=/var/run/mongodb/mongodb.pid
|
||||
|
||||
# Enables periodic logging of CPU utilization and I/O wait
|
||||
cpu = true
|
||||
|
||||
# Turn on/off security. Off is currently the default
|
||||
auth = true
|
||||
|
||||
# Verbose logging output.
|
||||
verbose = true
|
Loading…
Add table
Add a link
Reference in a new issue