diff options
author | Miguel De Anda <miguel@thedeanda.com> | 2014-07-05 07:58:12 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-07-05 07:58:12 +0700 |
commit | b46b769505f16dd3cc1cf730a96c9dc8da2a0f01 (patch) | |
tree | 8b1da35a53a6950e11370e1725ede9b1a6e682f9 /system/mongodb/README | |
parent | 3f7c0a401fcfa3e7e8daa0a6e33a03193965d8a0 (diff) | |
download | slackbuilds-b46b769505f16dd3cc1cf730a96c9dc8da2a0f01.tar.gz |
system/mongodb: Updated for version 2.6.3.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
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 8ab7036278..01e9a73c0d 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 |