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 |
Tags
- elasticsearch
- Tutorial
- Crontab
- configure
- json
- Data Engineering
- dense_vector
- grok
- ELK
- venv
- framework
- devtools
- path.data
- PYTHON
- filebeat
- typescript
- windows
- ubuntu
- CSV
- airflow
- package.json
- logstash
- query
- KoA
- elastic
- DSL
- node.js
- kibana
- 7.7.1
- OPCUA
Archives
- Today
- Total
Gibbs Kim's playground
[ElasticStack-11] Elasticsearch 외부 접속 on (Windows & Linux) 본문
Tech 기록지/Elastic Stack
[ElasticStack-11] Elasticsearch 외부 접속 on (Windows & Linux)
Lio Grande 2020. 6. 4. 15:35보통 ELK는 localhost:port 패턴으로 사용을 하지만 외부접속이 가능하게 하고 싶을때가 있다.
다음 파일들을 설정해주자
# version 7.6.2 # elasticsearch.yml
network.host: 0.0.0.0
discovery.seed_hosts: ["0.0.0.0", "0.0.0.0"]
# version 7.6.2 # kibana.yml
server.host: "0.0.0.0"
elasticsearch.hosts: ["USER_IP:9200"]
추가로 heap memory 관련하여 오류 메시지가 출력된다면 다음 설정을 확인하자
# elasticsearch/config/jvm.options
-Xms1g
-Xms1g
## 를 변경 Ex) 2g, 4g ...
(Linux) max virtual memory issue 발생 시

'Tech 기록지 > Elastic Stack' 카테고리의 다른 글
[ElasticStack-13] ELK operating on background (on Linux) (0) | 2020.06.09 |
---|---|
[ElasticStack-12] jdk download with wget command on Linux (0) | 2020.06.05 |
[ElasticStack-10] Data Snapshot & Restore (0) | 2020.06.03 |
[ElasticStack-9] CSV file 한글 내용 logstash 업로드 (convert utf-8 encoding) (0) | 2020.06.03 |
[ElasticStack-8] Elasticsearch indexing json through Logstash (0) | 2020.05.29 |