Kibana is an open-source analytics and visualization platform designed to work with Elasticsearch.
You use Kibana to search, view, and interact with data stored in Elasticsearch indexes.
You can easily perform advanced data analysis and visualize data in the form of icons, tables, and maps.
Kibana makes it easy to make sense of large amounts of data. Its simple, browser-based interface enables you to quickly create and share dynamic dashboards that show changes in Elasticsearch queries in real-time.
Kibana download
Kibana official download address:The hyperlink login is visible.
Download the corresponding Kibana installation package according to the ElasticSearch version and installation environment.
Since my es version is 6.5.2, the command is as follows:
Launch Kibana
Background start kibana (plus &) ./bin/kibana &
Browser access:The hyperlink login is visible.Can.Default port 5601
Note: At this time, & is added Although the background startup is performed, there are still logs printed out, and you can exit by using Ctrl+C. But ifIf Xshell is turned off directly, the service will also stop, the access http://ip:5601 failed.
Workaround:
After executing the ./bin/kibana & command, I don't use ctrl+c to exit the log, RatherUse exit; This way, even if the shell window is closed, the kibana service will not hang.
Close Kibana
Try using fuser -n tcp 5601
kill -9 Process Id
Allow access to the outside network
If you want to allow access from the outside network, go to the config of the kibana installation directory and edit the kibana.yml configuration file:
Try to access the IPs and ports as shown in the following figure:
Check the Kibana status
http://ip:5601/status
Monitoring interface
|