Chinaunix首页 | 论坛 | 博客
  • 博客访问: 171858
  • 博文数量: 40
  • 博客积分: 888
  • 博客等级: 准尉
  • 技术积分: 396
  • 用 户 组: 普通用户
  • 注册时间: 2010-09-01 10:17
文章分类
文章存档

2013年(10)

2012年(10)

2011年(11)

2010年(9)

分类: LINUX

2012-07-30 19:48:22

1 修改ulimit最大句柄为10240
cp /etc/security/limits.conf /etc/security/limits.conf_bak;
cp /etc/profile /etc/profile_bak;
touch /etc/security/limits.conf; 
echo -e "* soft nofile   65535\n* hard nofile   65535" >> /etc/security/limits.conf ;
echo "ulimit -HSn 65535" >> /etc/profile;. /etc/profile ;
 
touch /etc/pam.d/sshd2;echo "auth    required     /lib/security/pam_pwcheck.so shadow" > /etc/pam.d/sshd2 ;
touch /etc/pam.d/system-auth;echo "session required        /lib curity/pam_limits.so" > /etc/pam.d/system-auth;
 
rcssh2 restart
阅读(1512) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~