CentOS 7 Elasticsearch / kibana 7.0 OSS RPM Install
- 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