FROM: http://www.2cto.com/os/201303/192380.html

CentOS修改用户最大进程数
 
一般在/etc/security/limits.conf 中修改最大打开文件数和进程数,如:
* soft noproc 102400
* hard noproc 102400
* soft nofile 102400
* hard nofile 102400
  www.2cto.com  
但是在centos 6.3下,方法不一样了
首先在/etc/security/limits.conf中修改最大文件数和进程数
*   soft   nofile   102400
*   hard  nofile   102400
 
然后在/etc/security/limits.d/90-nproc.conf中修改最大文件数和进程数
*   soft   nproc   102400
*   hard  nproc   102400

相关文章:

  • 2022-12-23
  • 2022-02-07
  • 2022-12-23
  • 2021-09-30
  • 2022-01-18
  • 2021-11-03
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-04
  • 2022-01-10
  • 2022-12-23
  • 2022-12-23
  • 2021-12-05
  • 2021-12-18
相关资源
相似解决方案