Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- deragistration
- 센토스
- EC2
- fdisk
- 리눅스
- DISK
- awscli
- DELETE
- Error
- Linux
- Windows
- centos
- 인스턴스타입
- AWS
- 아마존
- terraform
- resize2fs
- ntp
- port
- mysql
- RDS
- ubuntu
- VPN
- EBS
- x-forward-for
- nvme
- x-real-ip
- xen
- Query
- onpromise
Archives
- Today
- Total
Cloud
세션 동시 접속 제한 해제 본문
현재 동시 접속 설정 확인
ulimit -Ha <- 글로벌설정 (전체설정)
ulimit -Sa <- 로컬설정 (지역설정)
현재 계정에 적용
ulimit -Hn 102400
ulimit -Sn 102400
ulimit -n 102400
재부팅 후에도 적용 및 전체 계정 적용을 하려면 limits.conf 에 아래 내용 입력 // *는 root 제외 모든 계정이라 root는 명시해주어야함.
$ vi /etc/security/limits.conf
* hard nofile 102400
* soft nofile 102400
root hard nofile 102400
root soft nofile 102400
변경된 점
Centos 6.8 이상 에서는 아래파일에 내용을 추가해야 함 (CENTOS 7 포함)
/etc/security/limits.d/90-nproc.conf
Ubuntu 14.04 LTS 기준 (기존과 동일)
/etc/security/limits.conf
'리눅스' 카테고리의 다른 글
리눅스 용량 확장 명령어 resize2fs 사용법 (Nothing to do! 나올때) (0) | 2015.10.16 |
---|---|
리눅스 네트워크 대역폭 측정툴 iperf (0) | 2015.10.07 |
타임존, NTP 설정 (0) | 2015.07.02 |
리눅스 파일 시스템 확인 방법 (0) | 2015.04.27 |
윈도우 공유 폴더를 리눅스의 특정 디렉토리에 연결하는 방법 (0) | 2014.07.03 |
Comments