일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- elasticsearch
- redis
- javascript
- Spring
- Oracle
- jsp
- ReactJS
- db
- ubuntu
- tool
- Spring Boot
- Gradle
- 맛집
- Git
- jenkins
- java
- Spring Batch
- springboot
- IntelliJ
- JVM
- laravel
- php
- Web Server
- Design Patterns
- 요리
- MySQL
- AWS
- linux
- it
- devops
Archives
- Today
- Total
아무거나
tcp_max_tw_buckets 값 설정 본문
반응형
tcp_max_tw_buckets 값 설정
- tcp_max_tw_buckets 는 시스템이 동시에 가질 수 있는 timewait 소켓의 최대 갯수
- 해당 값을 초과하면 time-wait 소켓을 즉시 파괴하고 경고 출력
기본값 보다 낮추면 안됨
- 현재 수치 확인 명령
$ cat /proc/sys/net/ipv4/tcp_max_tw_buckets
- 적용
// 적용 $ echo "net.ipv4.tcp_max_tw_buckets=2000000" >> /etc/sysctl.conf // 영구적용시 하기 명령 실행 $ sysctl -p
- Soft Limit, Hard Limit 영구 설정
- 일반적으론 soft limit과 hard limit을 동일하게 적용한다
[/etc/security/limits.conf]
... # "*"는 모든 사용자 계정에 적용 ("*" -> "bkjeon"로 설정하면 bkjeon 계정에서만 옵션 적용) * soft nofile 65535 * hard nofile 65535 ...
- 일반적으론 soft limit과 hard limit을 동일하게 적용한다
[/etc/security/limits.conf]
반응형
'Infra > Linux & Unix' 카테고리의 다른 글
[Linux] Soft Limit, Hard Limit (0) | 2022.07.29 |
---|---|
커널 파라미터 튜닝 (0) | 2021.02.11 |
[centos] 프로세스 systemd에 등록 및 서버 재부팅시에 자동 실행하게 등록 (3) | 2020.12.07 |
[ubuntu] Could not get lock /var/lib/dpkg/lock ... 오류 (0) | 2020.05.20 |
프로세스 백그라운드 실행 및 nohup (0) | 2020.04.16 |
Comments