일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 방이편백육분삼십성신여대
- 서울숲누룽지통닭구이
- 국가직
- 꼴뚜기회
- 스페인여행
- tomcat7
- 자바스크립트에러처리
- 영화추천
- gradle
- npm
- 파이썬
- 돈암동맛집
- 방이편백육분삼십
- react
- JavaScript
- 통영예쁜카페
- 공무원
- ubuntu자바설치
- 통영에어비앤비
- 성신여대편백집
- springboot
- 통영
- 성북구맛집
- 뚝섬역맛집
- 한남동맛집
- 성신여대맛집
- 한성대맛집
- ELK
- 퇴사후공무원
- 통영여행
- Today
- Total
코린이의 기록
[Elasticsearch] max file descriptors 4096 for elasticsearch process is too low increase to at least 65536 본문
[Elasticsearch] max file descriptors 4096 for elasticsearch process is too low increase to at least 65536
코린이예요 2019. 5. 2. 11:48
$ ulimit -Sa
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 31060
max locked memory (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files (-n) 1024
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 4096
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
설정 1.
$ sudo vi /etc/security/limits.conf
맨 아래에 아래 설정 추가
ec2-user hard nofile 65536
ec2-user hard nofile 65536
ec2-user hard nproc 65536
ec2-user sort nproc 65536
설정 2.
$ sudo vi /etc/rc.local
맨 아래에 아래 설정 추가
echo 1048575 > /proc/sys/vm/max_map_count
설정 3.
$ sudo sysctl -w fs.file-max=262114
server 재시작
$ ulimit -Sa
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 31060
max locked memory (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files (-n) 1024
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 31060
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
혹시 위 설정에도 error가 발생한다면
elasticsearch/conf/elasticsearch.yml에서 network.host=localhost or network.host=127.0.0.1로 설정되었는지 확인한다.
참고 : https://ongamedev.tistory.com/entry/Elasticsearch-cluster-%EC%84%A4%EC%A0%95
'ELK' 카테고리의 다른 글
[Kibana] Kibana 7.x 설치 및 다운로드 (0) | 2019.05.03 |
---|---|
[Elasticsearch] Elasticsearch 7.x 설치 및 다운로드 (1) | 2019.05.03 |
[Elasticsearch] java.lang.RuntimeException: can not run elasticsearch as root (0) | 2019.04.26 |
[Elasticsearch] CentOS elasticsearch 설치 및 실행하기 (0) | 2019.04.23 |
[Elasticsearch] Elastic Search >= 6.x 버전에서 elasticsearch-head 설치하기 (0) | 2019.04.23 |