How to deploy Kibana4 to tomcat?

As mentioned in the header ... regarding kibana3 or a previous version, we can deploy it to tomcat (just copy the kibana folder to the tomcat webapp folder), now how to do it with kibana4?

In fact, I know that I can use kibana4 by simply running the kibana.bat file, which is in the bin folder, but I do not want to use it that way in accordance with our requirement. Also just ignore this method.

Thanks in advance!

+5
source share
2 answers

Kibana 4 requires the use of its own server application to run some additional functions that cannot be implemented in pure JS:

rashidkpc

An integrated web server will become a mandatory part of Kibana 4 as we move towards the implementation of functions that cannot be fully implemented in javascript, for this reason we do not support the separation of the interface from the new backend in order to run on a third-party web server.

spenceralger

Using your server as a reverse proxy that sends requests back to Kibana should not be difficult with most modern servers.

You can find more information about GitHub:

Release 1628 contains some hacks on how to run the current version of Kibana 4 as a static web application.

+6
source

There is a separate repository for the static version of Kibana 4.

Here is a link to the main release: https://github.com/kibana-community/kibana4-static/releases/tag/v4.0.1-static

Here's a link to the release, which includes a workaround for the query problem with rest.action.multi.allow_explicit_index: false setting: https://github.com/kibana-community/kibana4-static/releases/tag/v4.0.1-static -disallow_explicit_index

0
source

Source: https://habr.com/ru/post/1204800/


All Articles