[ES from entry to actual combat] Three, full-text search-ElasticSearch-Docker install Kibana

Continue to the second section

2, Kibana

Install visual interface

docker run --name kibana -e ELASTICSEARCH_HOSTS=http://192.168.56.10:9200 -p 5601:5601 \
-d kibana:7.4.2

Note that you must 192.168.56.10modify it to your own virtual machine address
Insert picture description here

After the installation is complete, visit the address bar of the browser http://192.168.56.10:5601/, you can see that kibana has been started successfully:
Insert picture description here

Either yes or no:
Insert picture description here

Use our own data:
Insert picture description here

Successful installation interface:
Insert picture description here

Note: If the http://192.168.56.10:5601/following prompt appears during access , you can wait a while, it may be that kibana has not started successfully
Insert picture description here

You can also use it docker logs kibanato check the startup log of kibana. The following log indicates that kibana started normally:

Insert picture description here


Reference:
Elasticsearch Reference
elastic
full-text search engine Elasticsearch Getting Started Tutorial

Guess you like

Origin blog.csdn.net/runewbie/article/details/106292374