Kibana 7.1.1 Error registering Kibana Privileges with Elasticsearch

Hi,

If I start kibana from docker image then I got permanalty the flowing exception.

{"type":"log","@timestamp":"2019-05-29T15:10:20Z","tags":["security","error"],"pid":1,"message":"Error registering Kibana Privileges with Elasticsearch for kibana-.kibana: [security_exception] current license is non-compliant for [security], with { license.expired.feature=\"security\" }"}

I change only the version from 7.0 to 7.1.1 of the kibana docker image in my docker-compose file and delete all peristent data ( create a new virtual box image ) .

Did I miss a configuration ?

  kibana:
image:docker.elastic.co/kibana/kibana:@version.kibana@
container_name: kibana
hostname: kibana
mem_limit: 1664M
restart: always
networks:
  - amovanet
environment:
  - "SERVER_NAME: kibana"
  - "ELASTICSEARCH_HOSTS: http://elasticsearch:9200"
ports:
 - 5601:5601
volumes:
 - kibanadata:/usr/share/kibana

Ok. It's closed. It was my mistkae. I forgot to upgrdae the es version in my config files. :rage:

2 Likes

Thanks for sharing your solution here @suikast42, it's incredibly helpful for others which might be experiencing the same issue.

1 Like

That's the soul of an open source community :innocent:

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.