summaryrefslogtreecommitdiffstats
path: root/system/mongodb/README
diff options
context:
space:
mode:
Diffstat (limited to 'system/mongodb/README')
-rw-r--r--system/mongodb/README8
1 files changed, 7 insertions, 1 deletions
diff --git a/system/mongodb/README b/system/mongodb/README
index bf5583fcc2..f2e41d4aff 100644
--- a/system/mongodb/README
+++ b/system/mongodb/README
@@ -7,9 +7,15 @@ 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)