In terms of disabling xpack security, i mean in my elasticsearch.yml i have " xpack.security.enabled: false"
I have now added this to my kibana.yml issue still stands, although improved.
null operations look like i may need to reinstall the kibana instance?
Testing manually using curl to access the .kibana index looks normal
{".kibana":{"aliases":{},"mappings":{"server":{"dynamic":"strict","properties":{"uuid":{"type":"string","index":"not_analyzed"}}},"graph-workspace":{"properties":{"description":{"type":"string"},"kibanaSavedObjectMeta":{"properties":{"searchSourceJSON":{"type":"string"}}},"numLinks":{"type":"integer"},"numVertices":{"type":"integer"},"title":{"type":"string"},"version":{"type":"integer"},"wsState":{"type":"string"}}},"config":{"properties":{"buildNum":{"type":"string","index":"not_analyzed"},"defaultIndex":{"type":"string"},"discover:aggs:terms:size":{"type":"long"},"xPackMonitoring:allowReport":{"type":"boolean"},"xPackMonitoring:showBanner":{"type":"boolean"}}},"_default_":{"dynamic":"strict"},"url":{"dynamic":"strict","properties":{"accessCount":{"type":"long"},"accessDate":{"type":"date","format":"strict_date_optional_time||epoch_millis"},"createDate":{"type":"date","format":"strict_date_optional_time||epoch_millis"},"url":{"type":"string","fields":{"keyword":{"type":"string","index":"not_analyzed","ignore_above":2048}},"fielddata":false}}},"visualization":{"properties":{"description":{"type":"string"},"kibanaSavedObjectMeta":{"properties":{"searchSourceJSON":{"type":"string"}}},"savedSearchId":{"type":"string"},"title":{"type":"string"},"uiStateJSON":{"type":"string"},"version":{"type":"integer"},"visState":{"type":"string"}}},"dashboard":{"properties":{"description":{"type":"string"},"hits":{"type":"integer"},"kibanaSavedObjectMeta":{"properties":{"searchSourceJSON":{"type":"string"}}},"optionsJSON":{"type":"string"},"panelsJSON":{"type":"string"},"refreshInterval":{"properties":{"display":{"type":"string","fields":{"keyword":{"type":"string","index":"not_analyzed","ignore_above":256}},"fielddata":false},"pause":{"type":"boolean"},"section":{"type":"long"},"value":{"type":"long"}}},"timeFrom":{"type":"string"},"timeRestore":{"type":"boolean"},"timeTo":{"type":"string"},"title":{"type":"string"},"uiStateJSON":{"type":"string"},"version":{"type":"integer"}}},"timelion-sheet":{"properties":{"description":{"type":"string"},"hits":{"type":"integer"},"kibanaSavedObjectMeta":{"properties":{"searchSourceJSON":{"type":"string"}}},"timelion_chart_height":{"type":"integer"},"timelion_columns":{"type":"integer"},"timelion_interval":{"type":"string"},"timelion_other_interval":{"type":"string"},"timelion_rows":{"type":"integer"},"timelion_sheet":{"type":"string"},"title":{"type":"string"},"version":{"type":"integer"}}},"search":{"properties":{"columns":{"type":"string"},"description":{"type":"string"},"hits":{"type":"integer"},"kibanaSavedObjectMeta":{"properties":{"searchSourceJSON":{"type":"string"}}},"sort":{"type":"string"},"title":{"type":"string"},"version":{"type":"integer"}}},"index-pattern":{"properties":{"fieldFormatMap":{"type":"string"},"fields":{"type":"string"},"intervalName":{"type":"string"},"notExpandable":{"type":"boolean"},"timeFieldName":{"type":"string"},"title":{"type":"string"}}}},"settings":{"index":{"creation_date":"1478757612671","number_of_shards":"1","number_of_replicas":"1","uuid":"z7jNdqqpRz2KTeg_U8wHow","version":{"created":"2040199","upgraded":"5060099"}}}}}
and the elasticsearch stack itself is standing fine
"cluster_name" : "elasticsearch",
"status" : "yellow",
"timed_out" : false,
"number_of_nodes" : 2,
"number_of_data_nodes" : 2,
"active_primary_shards" : 806,
"active_shards" : 1610,
"relocating_shards" : 0,
"initializing_shards" : 0,
"unassigned_shards" : 2,
"delayed_unassigned_shards" : 0,
"number_of_pending_tasks" : 0,
"number_of_in_flight_fetch" : 0,
"task_max_waiting_in_queue_millis" : 0,
"active_shards_percent_as_number" : 99.87593052109182,
Yellow is due to a single index which is not replicated currently.
monitor@MonitorHost:~$ curl http://monitorhost:9200/
{
"name" : "MonitorNode-M-SSD",
"cluster_name" : "elasticsearch",
"cluster_uuid" : "8MHvkh-hQzqHvuKTg2PAIA",
"version" : {
"number" : "5.6.0",
"build_hash" : "781a835",
"build_date" : "2017-09-07T03:09:58.087Z",
"build_snapshot" : false,
"lucene_version" : "6.6.0"
},
"tagline" : "You Know, for Search"
}
Checking with curl all seems to be working well.