Docker Elasticsearch 설치 자습서

2030 단어

1,pull 명령 실행

docker pull elasticsearch:5.6.8

2,es 프로필 설정 ~/conf/es/elasticsearch.yml

http.host: 0.0.0.0 
#Uncomment the following lines for a production cluster deployment
transport.host: 0.0.0.0              
#discovery.zen.minimum_master_nodes: 1                                                                                         

transport.host: 0.0.0.0.0 임의의 ip 접근es (개발 단계, 생산 환경 지정 ip)

3, 실행

docker run 
-di 
--name=fj-es 
-p 9200:9200 
-p 9300:9300 
-v /home/vagrant/conf/es/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml 
elasticsearch:5.6.8

상태 보기
There is insufficient memory for the Java Runtime Environment to continue.             
Native memory allocation (mmap) failed to map 1973026816 bytes for committing reserved memory.                                      
An error report file with more information is saved as:                                 
/tmp/hs_err_pid1.log                                                                   
OpenJDK `64-Bit Server VM warning: INFO: os::commit_memory(0x000000008a660000, 1973026816, 0) failed; error='Cannot allocate memory' (errno=12)                       

4. 구성을 수정하면 시작할 수 없음


오류 발생: 메모리가 부족하여 jvm 프로필을 수정하지 못했습니다.find /var/lib/docker/overlay2/ -name jvm.options
장차
-Xms2g  
-Xmx2g12

로 수정
-Xms512m  
-Xmx512m                                                                       

설정 완료 실패: es 시작은 가장 많이 열린 파일의 개수와 가상 메모리 영역의 수량 등을 검사하기 때문에 이 설정을 놓으면 더 많은 파일과 가상 메모리를 열어야 하기 때문에 시스템 조정이 필요합니다.
수정:/etc/security/limits.conf 문서 끝에 추가
* soft nofile 65536
* hard nofile 65536

수정:/etc/sysctl.conf 문서 끝에 추가
vm.max_map_count=655360

명령 실행:
sysctl ‐p

VM 재부팅, 컨테이너 테스트 시작

좋은 웹페이지 즐겨찾기