Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to deploy Kibana4 in tomcat?

Tags:

kibana

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

actually ,i know i can use kibana4 just by runing kibana.bat file which resides in bin folder ,but i dont want to use it in this way according to our requirement .so just ignore this way .

Thanks in advance !

like image 839
tony duan Avatar asked Oct 16 '14 07:10

tony duan


1 Answers

Kibana 4 requires use of its own app-server to run for some advanced features that can't be implemented in pure JS:

rashidkpc:

The integrated web server will become a required part of Kibana 4 as we move towards implementing features that can not be fully realized in javascript, for this reason we do not support separating the frontend from the new backend for the purpose of running on a 3rd party web server.

spenceralger:

Using your server as a reverse proxy that transmits requests back to Kibana shouldn't be hard with most modern servers.

You can find additional information on GitHub:

  • How to deploy Kibana4 in tomcat?
  • Kibana 4 package as static html/js

Issue 1628 contains some hacks on how to run current version of Kibana 4 as a static web app.

like image 65
Pavel Vinogradov Avatar answered Nov 11 '22 11:11

Pavel Vinogradov