I need your help in solving this.
this is the result of my ulimit -a on my linux server
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
Now this is the result of my MongoDB
db.serverStatus().connections { "current" : 4, "available" : 5996 }
I want to increase MongoDb connections more by 10000.
I tried different options, for example in my mongod1.conf
fork = true port = 27017 maxConns = 10000
as well as when starting mongodb
mongod ulimit -n 10000 --config mongod1.conf
but nothing worked and everything failed, please let me know how I can increase the number of connections to 10,000 in my case, thanks in advance.
Kiran source share