You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently have the older Kibana working great. Setup Kibana3/nginx to connect to my elasticsearch from a couple hosts and finally the localhost that is the primary elasticsearch node. I am able to curl responses from 9200 on all hosts involved. I'm getting the above error in all instances in chrome, firefox loads fine but doesn't seem functional. Here are my configs in brief:
Getting: Error Could not find http://logstash01:9200/NOT_CONFIGURED/_mapping. If you are using a proxy, ensure it is configured correctly
Currently have the older Kibana working great. Setup Kibana3/nginx to connect to my elasticsearch from a couple hosts and finally the localhost that is the primary elasticsearch node. I am able to curl responses from 9200 on all hosts involved. I'm getting the above error in all instances in chrome, firefox loads fine but doesn't seem functional. Here are my configs in brief:
config.fs:
elasticsearch: 'http://logstash01.myhost.box:9200',
kibana_index: "kibana-int",
modules: ['histogram','map','pie','table','filtering',
'timepicker','text','fields','hits','dashcontrol',
'column','derivequeries','trends','bettermap','query',
'terms'],
nginx.conf:
Logstash
server {
listen 80;
server_name logstash01.myhost.box;
rewrite ^ https://logstash01.myhost.box permanent;
}
server {
listen 443;
server_name logstash01;
ssl on;
ssl_certificate /opt/nginx/ssl/server.crt;
ssl_certificate_key /opt/nginx/ssl/server.key;
ssl_session_timeout 5m;
ssl_protocols SSLv2 SSLv3 TLSv1;
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
ssl_prefer_server_ciphers on;
access_log /var/log/nginx/logstash.log;
error_log /var/log/nginx/logstash.log;
auth_ldap_url "ldap://ldap.myhost.box/ou=Users,ou=Main,dc=international,dc=box,dc=pvt?samaccountname?sub?(objectClass=user)";
auth_ldap_binddn "CN=svc.validator,OU=Service accounts,OU=Admin,DC=international,DC=box,DC=pvt";
auth_ldap_binddn_passwd "password";
auth_ldap "Restricted Space";
auth_ldap_require valid_user;
auth_ldap_satisfy any;
location / {
root /opt/kibana3;
index index.html index.htm;
}
}
Tried adding proxy_pass statements like this: https://github.com/elasticsearch/kibana/blob/master/sample/nginx.conf
Any wisdom is greatly appreciated.
The text was updated successfully, but these errors were encountered: