0
0
Elasticsearchquery~10 mins

Kibana setup and connection in Elasticsearch - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to start the Kibana service using systemctl.

Elasticsearch
sudo systemctl [1] kibana.service
Drag options to blanks, or click blank then click option'
Astart
Brestart
Cstop
Dstatus
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'stop' instead of 'start' will stop the service.
Using 'status' only shows the service status, not start it.
2fill in blank
medium

Complete the URL to access Kibana on localhost with default port.

Elasticsearch
http://localhost:[1]
Drag options to blanks, or click blank then click option'
A5601
B9200
C8080
D443
Attempts:
3 left
💡 Hint
Common Mistakes
Using 9200 which is Elasticsearch's port.
Using 8080 or 443 which are common web ports but not Kibana's default.
3fill in blank
hard

Fix the error in the Kibana configuration file to set the Elasticsearch URL correctly.

Elasticsearch
elasticsearch.hosts: ["[1]"]
Drag options to blanks, or click blank then click option'
Ahttp://localhost:5601
Bhttps://localhost:9200
Chttp://localhost:9200
Dhttps://localhost:5601
Attempts:
3 left
💡 Hint
Common Mistakes
Setting the URL to Kibana's port 5601 instead of Elasticsearch's 9200.
Using https without proper certificates.
4fill in blank
hard

Fill both blanks to configure Kibana to listen on all network interfaces and enable the server.

Elasticsearch
server.host: "[1]"
kibana.enabled: [2]
Drag options to blanks, or click blank then click option'
A0.0.0.0
Btrue
Cfalse
D127.0.0.1
Attempts:
3 left
💡 Hint
Common Mistakes
Using 127.0.0.1 limits Kibana to localhost only.
Setting enabled to false disables Kibana.
5fill in blank
hard

Fill all three blanks to create a basic Kibana index pattern configuration in YAML.

Elasticsearch
index_patterns:
  - [1]
  - [2]
  - [3]
Drag options to blanks, or click blank then click option'
A"logstash-*"
B"metrics-*"
C"filebeat-*"
D"kibana-*"
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'kibana-*' which is not a typical data index pattern.
Forgetting the quotes around patterns.