diff options
Diffstat (limited to 'system/mongodb/README')
-rw-r--r-- | system/mongodb/README | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/system/mongodb/README b/system/mongodb/README index 8ab7036278616..01e9a73c0dc25 100644 --- a/system/mongodb/README +++ b/system/mongodb/README @@ -1,2 +1,13 @@ -MongoDB is a scalable, high-performance, open source document-oriented -database. +MongoDB is a scalable, high-performance, open source document-oriented database. + +You'll need to create a mongo user and group in order to run mongo with the provided init script: + +# groupadd -g 285 mongo +# useradd -u 285 -d /var/lib/mongodb -s /bin/false -g mongo mongo + + +You'll also need to add the following to /etc/rc.d/rc.local + +if [ -x /etc/rc.d/rc.mongodb ]; then + /etc/rc.d/rc.mongodb start +fi |