Chinaunix首页 | 论坛 | 博客
  • 博客访问: 359317
  • 博文数量: 51
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1189
  • 用 户 组: 普通用户
  • 注册时间: 2014-02-14 15:23
文章分类
文章存档

2017年(4)

2016年(7)

2015年(9)

2014年(31)

我的朋友

分类: 系统运维

2014-05-07 11:58:38

Linux修改文件打开数

操作系统版本:Redhat 5.4

问题背景:Tsung压力测试,想要尽可能多地建立tcp请求发现每次只能建立1013个请求。

原因分析:Linux默认的文件打开数是1024,减掉其他地方用掉的11个,剩下的就是1013个了。

解决方案:

1)先用ulimit -n或ulimit -a命令,发现文件打开数是1024

[root@SamuluIndex ~]# ulimit -n

1024

2)用ulimit -n 65535把文件打开数改为最大值65535,再用ulimit -n验证发现修改成功

[root@SamuluIndex ~]# ulimit -n 65535

[root@SamuluIndex ~]# ulimit -n

65535

此时跑一下tsung start,发现仍然只能建立1013个请求。另外,重新登录后,发现文件打开数重置回默认的1024。说明此方案不通。

3)在/etc/security/limits.conf最后增加如下两行记录
* soft nofile 65535
* hard nofile 65535


    注意,上两行的*代表所有的用户,如果只是想让root用户增大文件连接数,可以写为     
    root soft nofile 65535
    root hard nofile 65535

重新登录(远程的话退出重新连接),验证:
[root@tixa ~]# ulimit -n
65535
 

阅读(1875) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~