OBD-1007: (10.225.212.133) The value of the ulimit parameter “open files” must not be less than 655350 (Current value: 1024)
配置如下:
- vim /etc/security/limits.conf
root soft nofile 655350
root hard nofile 655350
- soft nofile 655350
- hard nofile 655350
- soft stack unlimited
- hard stack unlimited
- soft nproc 655360
- hard nproc 655360
- soft core unlimited
- hard core unlimited
2)ulimit -a
[root@speech20 ~]# ulimit -a
core file size (blocks, -c) unlimited
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 255466
max locked memory (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files (-n) 655350
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) unlimited
cpu time (seconds, -t) unlimited
max user processes (-u) 655360
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
3)根据报错提示修复
[root@speech20 ~]# cat /etc/security/limits.d/nofile.conf
- soft nofile 655350
- hard nofile 655350