ulimit -----修改linux的软硬件限制文件

修改linux的软硬件限制文件/etc/security/limits.conf.    

   在文件尾部添加如下代码:    

  * soft nofile 65535     

  * hard nofile 65535      

  保存并推出。

 命令说明:      

domino type item value      domino是以符号@开头的用户名或组名,*表示所有用户,type设置为hard or soft。item指定想限制的资源。如cpu,core nofile nproc or maxlogins。value是相应的限制值。        

保存后让其文件生效,只需要重新登录一次,ulimit的值就生效了,如果还不行就 reboot(重新启动服务器)。

你可能感兴趣的:(ulimit)