Logstash on fedora 26
$ wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.2.3.rpm
$ sudo rpm -ivh elasticsearch-6.2.3.rpm
$ sudo systemctl enable elasticsearch
$ sudo systemctl start elasticsearch
$ sudo systemctl status elasticsearch
โ elasticsearch.service - Elasticsearch
Loaded: loaded (/usr/lib/systemd/system/elasticsearch.service; enabled; vendor preset: disabled)
Active: active (running) since Thu 2018-03-29 17:52:13 IST; 2s ago
Open firewall port:
$ sudo firewall-cmd --add-port=9200/tcp
$ sudo firewall-cmd --add-port=9200/tcp --permanent
Test Elasticsearch:
$ curl -X GET https://localhost:9200
{
"name" : "90JCb8K",
"cluster_name" : "elasticsearch",
"cluster_uuid" : "edIc7lSWR_Okd1JjZS4RFQ",
"version" : {
"number" : "6.2.3",
"build_hash" : "c59ff00",
"build_date" : "2018-03-13T10:06:29.741383Z",
"build_snapshot" : false,
"lucene_version" : "7.2.1"
},
"tagline" : "You Know, for Search"
}
$ wget https://artifacts.elastic.co/downloads/logstash/logstash-6.2.3.rpm
$ sudo rpm -ivh logstash-6.2.3.rpm
$ sudo systemctl enable logstash
$ sudo systemctl start logstash
$ sudo systemctl status logstash
โ logstash.service - logstash
Loaded: loaded (/etc/systemd/system/logstash.service; enabled; vendor preset: disabled)
Active: active (running) since Thu 2018-03-29 18:01:02 IST; 23s ago
$ wget https://artifacts.elastic.co/downloads/kibana/kibana-6.2.3-x86_64.rpm
$ sudo rpm -ivh kibana-6.2.3-x86_64.rpm
$ sudo systemctl start kibana
$ sudo systemctl enable kibana
$ sudo systemctl status kibana
โ kibana.service - Kibana
Loaded: loaded (/etc/systemd/system/kibana.service; enabled; vendor preset: disabled)
Active: active (running) since Thu 2018-03-29 18:08:07 IST; 48s ago
Main PID: 20040 (node)
...
"message":"Server running at https://localhost:5601"}
Related Articles
Logstash on fedora 26
Installing Elasticsearch, Logstash, and Kibana (ELK stack) on Fedora 26.
How We Set Up Our KVM Hypervisor: From Bare Metal to Production-Ready VM Host
Detailed walkthrough of building a dedicated KVM/libvirt hypervisor with XFS tuning, hugepages, 10GbE tuning, and automation.
Building a Predictable KVM Infrastructure: From Chaos to Control
How to engineer a predictable KVM-based infrastructure focusing on repeatability, observability, and operational safety.