报错信息: Too many open files 导致服务无法访问
解决办法
编辑limits.conf 文件
[root@test /]# vim /etc/security/limits.conf
在最后追加
* hard nofile 102400
* soft nofile 102400
* soft nproc 10240
* hard nproc 10240
* hard stack 102400
* soft stack 102400
nofile – 打开文件的最大数目
stack- 最大栈大小(kb)
noproc – 进程的最大数目