반응형
https://www.youtube.com/watch?v=ScLFL7UI644
Here we will configure Elasticsearch as a cluster and configure the ability to collect logs centrally via syslog.
Step.1 check to ip address for connect to ssh
sudo apt-get install ssh
Step.2 Install java and apply evn
sudo apt-get install software-properties-common sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer
Step.3 Elasticsearch Install
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add – echo "deb https://artifacts.elastic.co/packages/6.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-6.x.list sudo apt-get update sudo apt-get install elasticsearch
Step.4 Add to service base
sudo /bin/systemctl enable elasticsearch.service sudo /bin/systemctl daemon-reload
Step.5 Configuration for Elasticsearch
sudo nano /etc/elasticsearch/elasticsearch.yml
you need to enable parameter below list
cluster.name: node.name: network.host: http.port: discovery.zen.ping.unicast.hosts:
cluster.name:
node.name:
network.host:
http.port:
discovery.zen.ping.unicast.hosts:
add to host and IP
sudo nano /etc/hosts
Step.6 Elasticsearch state check
sudo apt-get install curl
curl -XGET http://172.16.4.151:9200/_cluster/health?pretty
curl -XGET http://172.16.4.152:9200/_all/_search?prettysudo apt-get install curl curl -XGET http://172.16.4.151:9200/_cluster/health?pretty curl -XGET http://172.16.4.152:9200/_all/_search?pretty
If you want to proceed with log centralization, please refer to the document below.
https://allmnet.tistory.com/entry/Part2-INSTALL-ELASTICSEARCH-6-CLUSTER-FOR-CENTRALIZED-SYSLOG
반응형
'Linux' 카테고리의 다른 글
MariaDB - Specified key was too long (0) | 2020.11.06 |
---|---|
ElasticSearch Size Management – Shards, logstash (0) | 2020.11.05 |
Ubuntu Firewall setting By UFW (0) | 2020.11.04 |
Log Analysis -tr, awk, uniq, sort (0) | 2020.11.04 |
Apache - ErrorDocument 설정 (0) | 2020.11.03 |