slackbuilds/system/mongodb
Willy Sudiarto Raharjo d3ef896508
system/mongodb: Updated for version .
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2024-01-13 06:43:49 +07:00
..
files system/mongodb: Updated for version 7.0.4. 2023-12-03 19:19:10 +07:00
patches system/mongodb: Updated for version 7.0.4. 2023-12-03 19:19:10 +07:00
README system/mongodb: Updated for version 5.0.4. 2021-11-22 09:10:21 +07:00
doinst.sh system/mongodb: Updated for version 5.0.4. 2021-11-22 09:10:21 +07:00
mongodb.SlackBuild system/mongodb: Updated for version . 2024-01-13 06:43:49 +07:00
mongodb.info system/mongodb: Updated for version . 2024-01-13 06:43:49 +07:00
slack-desc

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

NOTE: mongodb 5.0 requires use of the AVX instruction set: check if
your cpu supports it with

  grep avx /proc/cpuinfo | uniq

(no output means it doesn't)