slackbuilds/system/mongodb
B. Watson 2882f94b2b
system/mongodb: Fix README.
2016-11-15 21:41:38 +07:00
..
README system/mongodb: Fix README. 2016-11-15 21:41:38 +07:00
doinst.sh system/mongodb: Updated for version 2.6.3. 2014-07-05 07:58:12 +07:00
mongodb.SlackBuild system/mongodb: Updated for version 3.2.9. 2016-10-01 07:17:07 +07:00
mongodb.info system/mongodb: Updated for version 3.2.9. 2016-10-01 07:17:07 +07:00
rc.mongodb system/mongodb: Updated for version 2.6.3. 2014-07-05 07:58:12 +07:00
slack-desc system/mongodb: Updated for version 2.4.4. 2013-06-22 21:32:39 -03:00

README

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