-
CentOS 7 Elasticsearch / kibana 7.0 OSS RPM InstallElasticsearch 2019. 4. 29. 16:58
- CentOS 7
- Version : Elasticsearch 7.0 - OSS
- Elasticsearch Docs : https://www.elastic.co/guide/en/elasticsearch/reference/current/rpm.html
- kibana Docs : https://www.elastic.co/guide/en/kibana/current/rpm.html
Elasticsearch RPM 다운로드 & 설치
# wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-7.0.0-x86_64.rpm
# rpm --install elasticsearch-oss-7.0.0-x86_64.rpm
# systemctl start elasticsearch
# curl -X GET "localhost:9200"
{
"name" : " ",
"cluster_name" : "elasticsearch",
"cluster_uuid" : "zll1oEpMSYKARuQGP9QTFQ",
"version" : {
"number" : "7.0.0",
"build_flavor" : "oss",
"build_type" : "rpm",
"build_hash" : "b7e28a7",
"build_date" : "2019-04-05T22:55:32.697037Z",
"build_snapshot" : false,
"lucene_version" : "8.0.0",
"minimum_wire_compatibility_version" : "6.7.0",
"minimum_index_compatibility_version" : "6.0.0-beta1"
},
"tagline" : "You Know, for Search"
}kibana RPM 다운로드 & 설치
# wget https://artifacts.elastic.co/downloads/kibana/kibana-oss-7.0.0-x86_64.rpm
# rpm --install kibana-oss-7.0.0-x86_64.rpm
# systemctl start kibana
# vi /etc/kibana/kibana.yml
server.port: 5601 주석해제
elasticsearch.hosts: ["http://localhost:9200"] 주석해제
http://localhost:5601
'Elasticsearch' 카테고리의 다른 글
[Python] Get elastic cluster health. (파이썬API를 이용한 elastic 클러스터 핼쓰 보기) (0) 2020.03.03 [Elasticsearch] index 생성시 shards(샤드)와 replicas(레플리카) 세팅 (0) 2020.02.21 [Python] Insert bulk from pandas dataframe to elasticsearch (0) 2020.02.15 CentOS 7 Auditbeat 7.0 OSS RPM Install (0) 2019.04.29 [elastic] winlogbeat (윈도이벤트 로그 경량 수집기) - 설치 (0) 2019.03.20 [Python] Elasticsearch Monitoring (0) 2018.07.22 [Elasticsearch] Numeric(숫자) Data Types (0) 2018.07.14 Beat(비트) 윈도우 서비스에 등록하기 (0) 2018.07.02