kibana-own-home icon indicating copy to clipboard operation
kibana-own-home copied to clipboard

502 gateway with 6.5.2

Open aeolusheath opened this issue 5 years ago • 3 comments

run nginx with docker

nginx.conf

    server {
        listen       8080;
        server_name  localhost;

        #charset koi8-r;
        #access_log  logs/host.access.log  main;

        location / {
           #proxy_pass http://localhost:80;
           auth_basic "nginx basic auth";
           auth_basic_user_file /etc/nginx/conf.d/pass.db;
           proxy_set_header X-PROXY-USER $remote_user;
           proxy_pass http://localhost:5601;
        }
    }

run nginx and expose 8080 like this docker run -d -p 8080:8080 nginx

install kibana by local files ,not by docker。

kibana.yml

xpack.reporting.encryptionKey: "a_random_string"
elasticsearch.url: http://localhost:19200
own_home.elasticsearch.url: http://localhost:9200
elasticsearch.requestHeadersWhitelist: [ x-proxy-user, cookie ]
own_home.session.secretkey: the-password-must-be-at-least-32-characters-long
own_home.session.isSecure: false
own_home.local.groups: [ common01, common02 ]

image

image

is there something wrong in my config ? pls tell me ! @wtakase

aeolusheath avatar Jun 13 '19 07:06 aeolusheath

Could you try to add xpack.spaces.enabled: false in your kibana.yml?

wtakase avatar Jun 13 '19 07:06 wtakase

@wtakase not work , it is same as before o(╥﹏╥)o

aeolusheath avatar Jun 13 '19 08:06 aeolusheath

image @wtakase

aeolusheath avatar Jun 13 '19 10:06 aeolusheath