機能追加 #608
webサーバーカーネルパラメータ変更
ステータス: | 商用リリース | 開始日: | 2015/12/16 | |
---|---|---|---|---|
優先度: | 通常 | 期日: | ||
担当者: | 山本 義治 | 進捗 %: | 0% | |
カテゴリ: | システム全般 | 作業時間の記録: | - | |
対象バージョン: | - |
履歴
#1 山本 義治 が約9年前に更新
- 題名 を webサーバ- から webサーバーカーネルパラメータ変更 に変更
- カテゴリ を システム全般 にセット
- 担当者 を 山本 義治 にセット
[root@web1 ~]# /sbin/sysctl -a | grep tcp_tw_reuse
net.ipv4.tcp_tw_reuse = 0
[root@web1 ~]# /sbin/sysctl -a | grep tcp_tw_recycle
net.ipv4.tcp_tw_recycle = 0
[root@web1 ~]# /sbin/sysctl -a | grep tcp_fin_timeout
net.ipv4.tcp_fin_timeout = 60
[root@web1 ~]# vi /etc/sysctl.conf
net.ipv4.tcp_tw_recycle = 0 net.ipv4.tcp_tw_reuse = 1 net.ipv4.tcp_fin_timeout=30 net.ipv4.ip_local_port_range = 10240 65535
[root@web1 ~]# /sbin/sysctl -p
net.ipv4.ip_forward = 0 net.ipv4.conf.default.rp_filter = 1 net.ipv4.conf.default.accept_source_route = 0 kernel.sysrq = 0 kernel.core_uses_pid = 1 net.ipv4.tcp_syncookies = 1 kernel.msgmnb = 65536 kernel.msgmax = 65536 kernel.shmmax = 68719476736 kernel.shmall = 4294967296 net.ipv4.tcp_tw_recycle = 0 net.ipv4.tcp_tw_reuse = 1 net.ipv4.tcp_fin_timeout = 30 net.ipv4.ip_local_port_range = 10240 65535
[root@web1 ~]# /sbin/sysctl -a | grep tcp_fin_timeout
net.ipv4.tcp_fin_timeout = 30
[root@web1 ~]# /sbin/sysctl -a | grep tcp_tw_recycle
net.ipv4.tcp_tw_recycle = 0
[root@web1 ~]# /sbin/sysctl -a | grep tcp_tw_reuse
net.ipv4.tcp_tw_reuse = 1