Cloud

세션 동시 접속 제한 해제 본문

리눅스

세션 동시 접속 제한 해제

Firewall 2015. 6. 10. 13:52





현재 동시 접속 설정 확인


 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


Comments