我需要你的帮助来解决这个问题
这是我ulimit -a
在我的 linux 服务器上的结果
core file size (blocks, -c) 0
scheduling priority (-e) 0
file size (blocks, -f) unlimited
max memory size (kbytes, -m) unlimited
open files (-n) 10000
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 10240
cpu time (seconds, -t) unlimited
max user processes (-u) 24576
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
现在这是我的 MongoDB 的结果
db.serverStatus().connections
{ "current" : 4, "available" : 5996 }
我想将 MongoDb 连接增加到 10000 。
我尝试了不同的选项,比如在我的 mongod1.conf
fork = true
port = 27017
maxConns = 10000
还有这个在启动 mongodb 时
mongod ulimit -n 10000 --config mongod1.conf
但是没有任何效果并且都失败了,请让我知道如何将我的连接数增加到 10000,在此先感谢。