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 Right now this is the result of my MongoDB
db.serverStatus().connections { "current" : 4, "available" : 5996 } I want to increase the MongoDb connections more to 10000 .
I have tried different options like in my mongod1.conf
fork = true port = 27017 maxConns = 10000 and also this while starting mongodb
mongod ulimit -n 10000 --config mongod1.conf but nothing worked and all failed , please let me know how can i increase the connections to 10000 in my case , thanks in advance .
/proc/sys/fs/file-max? You need to bump that up too.ulimit -n 25000should do it.