I tried to delete kibana_1 index as stated in the previuos elastic log:
(Cluster health status changed from [RED] to [YELLOW] (reason: [shards started [[.kibana_1] ) :
so i ran:
DELETE /.kibana_1
and i received a success message.
this is my kibana.yml file:
server.port: 5601
server.host: [ipaddress]
server.name: "servername"
elasticsearch.hosts: [ipnode1, ipnode2, ipnode3]
and this is the log file of kibana:
{"type":"log","@timestamp":"2021-01-15T14:26:14Z","tags":["warning","plugins-
discovery"],"pid":3176,"message":"Expect plugin \"id\" in camelCase, but found:
apm_oss"}
{"type":"log","@timestamp":"2021-01-15T14:26:17Z","tags":["info","plugins-
service"],"pid":3176,"message":"Plugin \"visTypeXy\" is disabled."}
{"type":"log","@timestamp":"2021-01-15T14:26:18Z","tags":["warning","legacy-
service"],"pid":3176,"message":"Some installed third party plugin(s) [apm_oss,
console_legacy, elasticsearch, kibana, newsfeed, region_map, status_page,
tile_map, timelion, ui_metric] are using the legacy plugin format and will no
longer work in a future Kibana release. Please refer to https://ela.st/kibana-
breaking-changes-8-0 for a list of breaking changes and https://ela.st/kibana-
platform-migration for documentation on how to migrate legacy plugins."}
{"type":"log","@timestamp":"2021-01-15T14:26:18Z","tags":["info","plugins-
system"],"pid":3176,"message":"Setting up [42] plugins:
[usageCollection,telemetryCollectionManager,telemetry,kibanaLegacy,devTools,ui
Actions,statusPage,share,newsfeed,mapsLegacy,kibanaUtils,kibanaReact,inspector,embeddable,indexPatternManagement,esUiShared,discover,charts,bfetch,expressions,data,home,console,apm_oss,management,advancedSettings,telemetryManagementSection,visualizations,visTypeVislib,visTypeVega,visTypeTimeseries,visTypeTi
melion,visTypeTagcloud,visTypeTable,visTypeMetric,visTypeMarkdown,inputContr
olVis,savedObjects,navigation,visualize,dashboard,savedObjectsManagement]"}
{"type":"log","@timestamp":"2021-01-15T14:26:19Z","tags":["info","savedobjects-
service"],"pid":3176,"message":"Waiting until all Elasticsearch nodes are
compatible with Kibana before starting saved objects migrations..."}
{"type":"log","@timestamp":"2021-01-15T14:26:24Z","tags":["info","savedobjects-
service"],"pid":3176,"message":"Starting saved objects migrations"}
{"type":"log","@timestamp":"2021-01-15T14:26:54Z","tags":
["warning","savedobjects-service"],"pid":3176,"message":"Unable to connect to
Elasticsearch. Error: Request Timeout after 30000ms"}
this is the last part of the log of elastic cluster:
[2021-01-15T13:58:24,995][INFO ][o.e.c.r.a.AllocationService] [cluster-node-1] Cluster health status changed from [RED] to [GREEN] (reason: [shards started [[index_att][0]]]).
[2021-01-15T14:40:48,800][INFO ][o.e.c.m.MetadataDeleteIndexService] [elastic-cluster-node-1] [.kibana_2/21NiblINQRiAuG3kTEREhA] deleting index
[2021-01-15T14:44:29,509][INFO ][o.e.c.m.MetadataCreateIndexService] [elastic-cluster-node-1] [.kibana_2] creating index, cause [api], templates [], shards [1]/[1], mappings [_doc]
[2021-01-15T14:44:29,525][INFO ][o.e.c.r.a.AllocationService] [cluster-node-1] updating number_of_replicas to [0] for indices [.kibana_2]
[2021-01-15T14:44:29,884][INFO ][o.e.c.r.a.AllocationService] [cluster-node-1] Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.kibana_2][0]]])
this is elasticsearch.yml
cluster.name: elastic-cluster
node.name: cluster-node-1
path.data: H:\Elastic\data
path.logs: H:\Elastic\logs
network.host: 0.0.0.0
http.port: 9200
discovery.seed_hosts: ["srvenv1", "srvenv2", "srvenv3"]
cluster.initial_master_nodes: ["cluster-node-1", "cluster-node-2", "cluster-node-3"]
Can anyone help me?
Thanks