In kibana plugin development environment, I am able to do "yarn kbn bootstarp"
and after "yar start" I am able to reach to login screen,
but after entering credentials and clicking on login button it is giving me the same login window.
testing kibana & elasticsearch version 8.5.1
below is the messages on kiban terminal :
[2024-05-20T15:08:10.753+05:30][INFO ][status] Kibana is now available (was degraded)
[2024-05-20T15:08:10.789+05:30][INFO ][plugins.ml] Task ML:saved-objects-sync-task: No ML saved objects in need of synchronization
[2024-05-20T15:08:54.804+05:30][INFO ][plugins.security.routes] Logging in with provider "basic" (basic)
and below is the messages on elasticsearch terminal :
2024-05-20T15:08:06,323][INFO ][o.e.t.LoggingTaskListener] [Sunils-MacBook-Pro.local] 4525 finished with response BulkByScrollResponse[took=171.5ms,timed_out=false,sliceId=null,updated=126,created=0,deleted=0,batches=1,versionConflicts=0,noops=0,retries=0,throttledUntil=0s,bulk_failures=[],search_failures=[]]
[2024-05-20T15:08:54,965][INFO ][o.e.x.s.s.SecurityIndexManager] [Sunils-MacBook-Pro.local] security index does not exist, creating [.security-profile-8] with alias [.security-profile]
[2024-05-20T15:08:55,035][INFO ][o.e.c.m.MetadataCreateIndexService] [Sunils-MacBook-Pro.local] [.security-profile-8] creating index, cause [api], templates [], shards [1]/[0]
[2024-05-20T15:08:55,211][INFO ][o.e.c.r.a.AllocationService] [Sunils-MacBook-Pro.local] current.health="GREEN" message="Cluster health status changed from [YELLOW] to [GREEN] (reason: [shards started [[.security-profile-8][0]]])." previous.health="YELLOW" reason="shards started [[.security-profile-8][0]]"
[2024-05-20T15:13:08,097][INFO ][o.e.c.m.MetadataMappingService] [Sunils-MacBook-Pro.local] [.kibana_8.5.1_001/yg23-gQcS9-brtZXAEA5yg] update_mapping [_doc]
FYI : I copied below lines from kibana-8.5.1 original tool to Kibana plugin development environment project on same location i.e. : config/kibana.yml
elasticsearch.hosts: ['https://192.168.0.101:9200']
elasticsearch.serviceAccountToken: ENCRTYPTED_TEXT
elasticsearch.ssl.certificateAuthorities: [/Users/sunil/Documents/workspace/kibana/data/ca_1716197632521.crt]
xpack.fleet.outputs: [{id: fleet-default-output, name: default, is_default: true, is_default_monitoring: true, type: elasticsearch, hosts: ['https://192.168.0.101:9200'], ca_trusted_fingerprint: ENCRTYPTED_TEXT}]