记得第一次接触/etc/security/limits.conf
和/etc/sysctl.conf
时是因为部署Oracle时要按需修改内核参数。limits.conf文件实际是Linux PAM(插入式认证模块,Pluggable Authentication Modules)中 pam_limits.so 的配置文件,突破系统的默认限制,对系统访问资源有一定保护作用。 limits.conf 和sysctl.conf区别在于limits.conf是针对用户,而sysctl.conf是针对整个系统参数配置。
调整limits.conf和sysctl.conf参数是有必要的
2015年08月10日 - 初稿
阅读原文 - http://wsgzao.github.io/post/sysctl/
扩展阅读
设置Sysctl.conf用以提高Linux的性能(最完整的sysctl.conf优化方案) - http://blog.csdn.net/21aspnet/article/details/6584792
limits.conf工作原理 - http://my.oschina.net/987openlab/blog/94634
ulimit命令 - http://man.linuxde.net/ulimit
Sysctl学习 - http://pengyao.org/sysctl-1.html
Kernel sysctl configuration file for Linux - https://klaver.it/linux/sysctl.conf
LTMP索引 - http://wsgzao.github.io/index/#LTMP
1
kiritoalex 2015-08-11 18:56:30 +08:00 via Android
已收藏√
|
2
immjun 2015-08-11 19:45:03 +08:00
感谢分享~
|
3
adaibee 2015-08-12 11:16:50 +08:00
已经收藏,正好最近有用到
|
4
denghongcai 2015-08-12 16:23:01 +08:00
```
net.ipv4.tcp_tw_recycle = 1 #开启TCP连接复用功能,允许将time_wait sockets重新用于新的TCP连接(主要针对time_wait连接) net.ipv4.tcp_tw_reuse = 1 ``` 看到这两条我就醉了 |
5
wsgzao OP @denghongcai 所以你看我用在生产的配置就不会加入一些有歧义的参数
|