免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2448 | 回复: 6
打印 上一主题 下一主题

[系统安装] 求各位前辈解释SYSCTL.CONF的一些配置 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-06-29 09:28 |只看该作者 |倒序浏览
kernel.shmall = 2097152                                  这个选项是否是所有的共享内存?
kernel.shmmax = 2147483648                         这个是支持的最大共享内存
kernel.shmmni = 4096                                     这个是支持的最小共享内存
kernel.sem = 250 32000 100 128                     这个不知道什么意思
fs.file-max = 65536                                         这个是最大打开文件个数
net.ipv4.ip_local_port_range = 1024 65000       这个是打开端口的范围
net.core.rmem_default = 1048576                    |
net.core.rmem_max = 1048576                        |
net.core.wmem_default = 262144                     |——这四个都不太明白
net.core.wmem_max = 262144                         |

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
2 [报告]
发表于 2012-06-29 10:12 |只看该作者

论坛徽章:
13
15-16赛季CBA联赛之同曦
日期:2016-01-28 19:52:032015亚冠之北京国安
日期:2015-10-07 14:28:19NBA常规赛纪念章
日期:2015-05-04 22:32:03处女座
日期:2015-01-15 19:45:44卯兔
日期:2014-10-28 16:17:14白羊座
日期:2014-05-24 15:10:46寅虎
日期:2014-05-10 09:50:35白羊座
日期:2014-03-12 20:52:17午马
日期:2014-03-01 08:37:27射手座
日期:2014-02-19 19:26:54子鼠
日期:2013-11-30 09:03:56狮子座
日期:2013-09-08 08:37:52
3 [报告]
发表于 2012-06-29 10:43 |只看该作者
本帖最后由 ulovko 于 2012-06-29 10:45 编辑
kernel.shmall = 2097152                                  这个选项是否是所有的共享内存?
kernel.shmmax = 2147483648                         这个是支持的最大共享内存
kernel.shmmni = 4096                                     这个是支持的最小共享内存
kernel.sem = 250 32000 100 128                     这个不知道什么意思
fs.file-max = 65536                                         这个是最大打开文件个数
net.ipv4.ip_local_port_range = 1024 65000       这个是打开端口的范围
net.core.rmem_default = 1048576                    |
net.core.rmem_max = 1048576                        |
net.core.wmem_default = 262144                     |——这四个都不太明白
net.core.wmem_max = 262144                         |
  1. > ipcs -M
  2. shminfo:
  3.    shmmax:    536870912   (max shared memory segment size)
  4.    shmmin:            1   (min shared memory segment size)
  5.    shmmni:          192   (max number of shared memory identifiers)
  6.    shmseg:          128   (max shared memory segments per process)
  7.    shmall:        32768   (max amount of shared memory in pages)
  8. # man ipcs
  9. ipcs — report System V interprocess communication facilities status
复制代码
Type: sysctl -w net.core.rmem_max=8388608
This sets the max OS receive buffer size for all types of connections.

Type: sysctl -w net.core.wmem_max=8388608
This sets the max OS send buffer size for all types of connections.

Type: sysctl -w net.core.rmem_default=65536
This sets the default OS receive buffer size for all types of connections.

Type: sysctl -w net.core.wmem_default=65536
This sets the default OS send buffer size for all types of connections.

Type: sysctl -w net.ipv4.tcp_mem='8388608 8388608 8388608'
TCP Autotuning setting. "The tcp_mem variable defines how the TCP stack should behave when it comes to memory usage.
The first value specified in the tcp_mem variable tells the kernel the low threshold.
Below this point, the TCP stack do not bother at all about putting any pressure on the memory usage by different TCP sockets.
The second value tells the kernel at which point to start pressuring memory usage down.
The final value tells the kernel how many memory pages it may use maximally.
If this value is reached, TCP streams and packets start getting dropped until we reach a lower memory usage again.
This value includes all TCP sockets currently in use."

Type: sysctl -w net.ipv4.tcp_rmem='4096 87380 8388608'
TCP Autotuning setting. "The first value tells the kernel the minimum receive buffer for each TCP connection, and this buffer is always allocated to a TCP socket, even under high pressure on the system.
The second value specified tells the kernel the default receive buffer allocated for each TCP socket.
This value overrides the /proc/sys/net/core/rmem_default value used by other protocols.
The third and last value specified in this variable specifies the maximum receive buffer that can be allocated for a TCP socket."

Type: sysctl -w net.ipv4.tcp_wmem='4096 65536 8388608'
TCP Autotuning setting. "This variable takes 3 different values which holds information on how much TCP sendbuffer memory space each TCP socket has to use.
Every TCP socket has this much buffer space to use before the buffer is filled up.
Each of the three values are used under different conditions.
The first value in this variable tells the minimum TCP send buffer space available for a single TCP socket.
The second value in the variable tells us the default buffer space allowed for a single TCP socket to use.
The third value tells the kernel the maximum TCP send buffer space."

Type:sysctl -w net.ipv4.route.flush=1
This will enusre that immediatly subsequent connections use these values. [/code]Ipsysctl-tutorial: http://www.frozentux.net/documents/ipsysctl-tutorial/

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
4 [报告]
发表于 2012-06-30 13:11 |只看该作者
非常不错,感谢 ulovko 兄共享哈。

论坛徽章:
13
15-16赛季CBA联赛之同曦
日期:2016-01-28 19:52:032015亚冠之北京国安
日期:2015-10-07 14:28:19NBA常规赛纪念章
日期:2015-05-04 22:32:03处女座
日期:2015-01-15 19:45:44卯兔
日期:2014-10-28 16:17:14白羊座
日期:2014-05-24 15:10:46寅虎
日期:2014-05-10 09:50:35白羊座
日期:2014-03-12 20:52:17午马
日期:2014-03-01 08:37:27射手座
日期:2014-02-19 19:26:54子鼠
日期:2013-11-30 09:03:56狮子座
日期:2013-09-08 08:37:52
5 [报告]
发表于 2012-07-01 11:11 |只看该作者
snow888 发表于 2012-06-30 13:11
非常不错,感谢 ulovko 兄共享哈。


不客气 应该做的 $_$

论坛徽章:
10
2015亚冠之全北现代
日期:2015-06-16 09:16:24CU十四周年纪念徽章
日期:2016-08-08 11:20:3915-16赛季CBA联赛之青岛
日期:2016-02-17 09:14:2015-16赛季CBA联赛之北京
日期:2016-02-12 22:23:3215-16赛季CBA联赛之同曦
日期:2016-01-15 11:11:0815-16赛季CBA联赛之广东
日期:2016-01-15 10:46:4215-16赛季CBA联赛之北控
日期:2015-12-19 18:20:002015亚冠之山东鲁能
日期:2015-07-02 14:03:482015亚冠之吉达阿赫利
日期:2015-06-28 14:08:4015-16赛季CBA联赛之天津
日期:2017-04-21 10:37:41
6 [报告]
发表于 2012-07-01 21:03 |只看该作者
一个程序引发的血案。

论坛徽章:
10
2015亚冠之全北现代
日期:2015-06-16 09:16:24CU十四周年纪念徽章
日期:2016-08-08 11:20:3915-16赛季CBA联赛之青岛
日期:2016-02-17 09:14:2015-16赛季CBA联赛之北京
日期:2016-02-12 22:23:3215-16赛季CBA联赛之同曦
日期:2016-01-15 11:11:0815-16赛季CBA联赛之广东
日期:2016-01-15 10:46:4215-16赛季CBA联赛之北控
日期:2015-12-19 18:20:002015亚冠之山东鲁能
日期:2015-07-02 14:03:482015亚冠之吉达阿赫利
日期:2015-06-28 14:08:4015-16赛季CBA联赛之天津
日期:2017-04-21 10:37:41
7 [报告]
发表于 2012-07-01 21:04 |只看该作者
英语太差丫!   
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP