Elasticsearch_1 exited with code 1

Hello, when I try to run elasticsearch and kibana through docker-compose, I get the following error.
Elasticsearch_1 exited with code 1

Here is manual with this settings.
Elastiflow

I tried different versions, I also tried to download from the official repository, the error is the same

version: '3'
services:

  elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch:7.13.1
    restart: unless-stopped
    hostname: NODE
    ulimits:
      memlock:
        soft: -1
        hard: -1
      nofile:
        soft: 131072
        hard: 131072
      nproc: 8192
      fsize: -1
    network_mode: bridge
    ports:
      # HTTP/REST
      - 9200:9200/tcp
    volumes:
      # mkdir /var/lib/elasticsearch && chown -R 1000:1000 /var/lib/elasticsearch
      - /var/lib/elasticsearch:/usr/share/elasticsearch/data
      - /etc/certs:/usr/share/elasticsearch/config/certificates
    environment:
      ES_JAVA_OPTS: '-Xms3g -Xmx3g'

      cluster.name: elastiflow
      node.name: NODE

      bootstrap.memory_lock: 'true'

      network.bind_host: 0.0.0.0
      network.publish_host: 192.0.2.11
      http.port: 9200
      http.publish_port: 9200

      discovery.type: 'single-node'

      indices.query.bool.max_clause_count: 8192
      search.max_buckets: 250000

      action.destructive_requires_name: 'true'

      reindex.remote.whitelist: '*:*'
      reindex.ssl.verification_mode: 'none'

      xpack.security.http.ssl.key: /usr/share/elasticsearch/config/certificates/node/node.key
      xpack.security.http.ssl.certificate: /usr/share/elasticsearch/config/certificates/node/node.crt
      xpack.security.http.ssl.certificate_authorities: /usr/share/elasticsearch/config/certificates/ca/ca.crt
      xpack.security.http.ssl.verification_mode: 'none'
      xpack.security.http.ssl.enabled: 'true'

      xpack.monitoring.collection.enabled: 'true'
      xpack.monitoring.collection.interval: 30s

      xpack.security.enabled: 'true'
      xpack.security.audit.enabled: 'false'
      
  kibana:
    image: docker.elastic.co/kibana/kibana:7.13.1
    restart: unless-stopped
    hostname: NODE
    network_mode: bridge
    ports:
      # HTTP/REST
      - 5601:5601/tcp
    environment:
      TELEMETRY_OPTIN: 'false'
      TELEMETRY_ENABLED: 'false'
      NEWSFEED_ENABLED: 'false'

      SERVER_NAME: 'NODE'
      SERVER_HOST: '0.0.0.0'
      SERVER_PORT: 5601
      SERVER_MAXPAYLOADBYTES: 8388608

      ELASTICSEARCH_HOSTS: 'https://192.0.2.11:9200'
      ELASTICSEARCH_USERNAME: 'elastic'
      ELASTICSEARCH_PASSWORD: '123Qwerty123'
      ELASTICSEARCH_REQUESTTIMEOUT: 132000
      ELASTICSEARCH_SHARDTIMEOUT: 120000

      #ELASTICSEARCH_SSL_CERTIFICATE: /etc/kibana/certs/node/node.crt
      #ELASTICSEARCH_SSL_KEY: /etc/kibana/certs/node/node.key
      #ELASTICSEARCH_SSL_CERTIFICATEAUTHORITIES: /etc/kibana/certs/ca/ca.crt
      ELASTICSEARCH_SSL_VERIFICATIONMODE: 'none' 

      KIBANA_AUTOCOMPLETETIMEOUT: 3000
      KIBANA_AUTOCOMPLETETERMINATEAFTER: 2500000

      VIS_TYPE_VEGA_ENABLEEXTERNALURLS: 'true'

      XPACK_MAPS_SHOWMAPVISUALIZATIONTYPES: 'true'
      XPACK_ENCRYPTEDSAVEDOBJECTS_ENCRYPTIONKEY: 'ElastiFlow_0123456789_0123456789_0123456789'
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:00,681Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "elastiflow", "node.name": "NODE", "message": "version[7.13.1], pid[7], build[default/docker/9a7758028e4ea59bcab41c12004603c5a7dd84a9/2021-05-28T17:40:59.346932922Z], OS[Linux/5.15.0-41-generic/amd64], JVM[AdoptOpenJDK/OpenJDK 64-Bit Server VM/16/16+36]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:00,687Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "elastiflow", "node.name": "NODE", "message": "JVM home [/usr/share/elasticsearch/jdk], using bundled JDK [true]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:00,688Z", "level": "INFO", "component": "o.e.n.Node", "cluster.name": "elastiflow", "node.name": "NODE", "message": "JVM arguments [-Xshare:auto, -Des.networkaddress.cache.ttl=60, -Des.networkaddress.cache.negative.ttl=10, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -XX:-OmitStackTraceInFastThrow, -XX:+ShowCodeDetailsInExceptionMessages, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dio.netty.allocator.numDirectArenas=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Djava.locale.providers=SPI,COMPAT, --add-opens=java.base/java.io=ALL-UNNAMED, -XX:+UseG1GC, -Djava.io.tmpdir=/tmp/elasticsearch-1551738711273022710, -XX:+HeapDumpOnOutOfMemoryError, -XX:HeapDumpPath=data, -XX:ErrorFile=logs/hs_err_pid%p.log, -Xlog:gc*,gc+age=trace,safepoint:file=logs/gc.log:utctime,pid,tags:filecount=32,filesize=64m, -Des.cgroups.hierarchy.override=/, -Xms3g, -Xmx3g, -XX:MaxDirectMemorySize=1610612736, -XX:G1HeapRegionSize=4m, -XX:InitiatingHeapOccupancyPercent=30, -XX:G1ReservePercent=15, -Des.path.home=/usr/share/elasticsearch, -Des.path.conf=/usr/share/elasticsearch/config, -Des.distribution.flavor=default, -Des.distribution.type=docker, -Des.bundled_jdk=true]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,374Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [aggs-matrix-stats]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,375Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [analysis-common]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,375Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [constant-keyword]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,375Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [frozen-indices]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,375Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [ingest-common]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,375Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [ingest-geoip]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,376Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [ingest-user-agent]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,376Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [kibana]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,376Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [lang-expression]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,376Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [lang-mustache]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,376Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [lang-painless]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,377Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [mapper-extras]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,377Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [mapper-version]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,377Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [parent-join]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,377Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [percolator]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,377Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [rank-eval]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,377Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [reindex]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,378Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [repositories-metering-api]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,378Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [repository-encrypted]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,378Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [repository-url]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,378Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [runtime-fields-common]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,378Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [search-business-rules]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,378Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [searchable-snapshots]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,379Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [snapshot-repo-test-kit]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,379Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [spatial]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,379Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [transform]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,379Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [transport-netty4]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,379Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [unsigned-long]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,379Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [vectors]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,380Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [wildcard]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,380Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-aggregate-metric]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,380Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-analytics]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,380Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-async]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,380Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-async-search]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,380Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-autoscaling]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,381Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-ccr]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,381Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-core]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,381Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-data-streams]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,381Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-deprecation]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,381Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-enrich]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,381Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-eql]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,382Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-fleet]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,382Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-graph]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,382Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-identity-provider]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,382Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-ilm]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,382Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-logstash]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,382Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-ml]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,383Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-monitoring]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,383Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-ql]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,383Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-rollup]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,383Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-security]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,383Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-shutdown]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,383Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-sql]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,384Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-stack]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,384Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-text-structure]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,384Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-voting-only-node]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,384Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "loaded module [x-pack-watcher]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,385Z", "level": "INFO", "component": "o.e.p.PluginsService", "cluster.name": "elastiflow", "node.name": "NODE", "message": "no plugins loaded" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,420Z", "level": "INFO", "component": "o.e.e.NodeEnvironment", "cluster.name": "elastiflow", "node.name": "NODE", "message": "using [1] data paths, mounts [[/usr/share/elasticsearch/data (/dev/mapper/vgubuntu-root)]], net usable_space [504.7gb], net total_space [914.6gb], types [ext4]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,420Z", "level": "INFO", "component": "o.e.e.NodeEnvironment", "cluster.name": "elastiflow", "node.name": "NODE", "message": "heap size [3gb], compressed ordinary object pointers [true]" }
elasticsearch_1  | {"type": "server", "timestamp": "2022-09-01T07:41:03,526Z", "level": "ERROR", "component": "o.e.b.ElasticsearchUncaughtExceptionHandler", "cluster.name": "elastiflow", "node.name": "NODE", "message": "uncaught exception in thread [main]", 
elasticsearch_1  | "stacktrace": ["org.elasticsearch.bootstrap.StartupException: ElasticsearchException[failed to bind service]; nested: IndexFormatTooNewException[Format version is not supported (resource SimpleFSIndexInput(path=\"/usr/share/elasticsearch/data/nodes/0/_state/_14l.cfs\") [slice=_14l.fdt]): 4 (needs to be between 1 and 3)];",
elasticsearch_1  | "at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:163) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.bootstrap.Elasticsearch.execute(Elasticsearch.java:150) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:75) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:116) ~[elasticsearch-cli-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.cli.Command.main(Command.java:79) ~[elasticsearch-cli-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:115) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:81) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "Caused by: org.elasticsearch.ElasticsearchException: failed to bind service",
elasticsearch_1  | "at org.elasticsearch.node.Node.<init>(Node.java:782) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.node.Node.<init>(Node.java:278) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.bootstrap.Bootstrap$5.<init>(Bootstrap.java:217) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.bootstrap.Bootstrap.setup(Bootstrap.java:217) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.bootstrap.Bootstrap.init(Bootstrap.java:397) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:159) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "... 6 more",
elasticsearch_1  | "Caused by: org.apache.lucene.index.IndexFormatTooNewException: Format version is not supported (resource SimpleFSIndexInput(path=\"/usr/share/elasticsearch/data/nodes/0/_state/_14l.cfs\") [slice=_14l.fdt]): 4 (needs to be between 1 and 3)",
elasticsearch_1  | "at org.apache.lucene.codecs.CodecUtil.checkHeaderNoMagic(CodecUtil.java:216) ~[lucene-core-8.8.2.jar:8.8.2 a92a05e195b775b30ca410bc0a26e8e79e7b3bfb - mdrob - 2021-04-06 16:33:27]",
elasticsearch_1  | "at org.apache.lucene.codecs.CodecUtil.checkHeader(CodecUtil.java:198) ~[lucene-core-8.8.2.jar:8.8.2 a92a05e195b775b30ca410bc0a26e8e79e7b3bfb - mdrob - 2021-04-06 16:33:27]",
elasticsearch_1  | "at org.apache.lucene.codecs.CodecUtil.checkIndexHeader(CodecUtil.java:255) ~[lucene-core-8.8.2.jar:8.8.2 a92a05e195b775b30ca410bc0a26e8e79e7b3bfb - mdrob - 2021-04-06 16:33:27]",
elasticsearch_1  | "at org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.<init>(CompressingStoredFieldsReader.java:130) ~[lucene-core-8.8.2.jar:8.8.2 a92a05e195b775b30ca410bc0a26e8e79e7b3bfb - mdrob - 2021-04-06 16:33:27]",
elasticsearch_1  | "at org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsReader(CompressingStoredFieldsFormat.java:123) ~[lucene-core-8.8.2.jar:8.8.2 a92a05e195b775b30ca410bc0a26e8e79e7b3bfb - mdrob - 2021-04-06 16:33:27]",
elasticsearch_1  | "at org.apache.lucene.codecs.lucene87.Lucene87StoredFieldsFormat.fieldsReader(Lucene87StoredFieldsFormat.java:131) ~[lucene-core-8.8.2.jar:8.8.2 a92a05e195b775b30ca410bc0a26e8e79e7b3bfb - mdrob - 2021-04-06 16:33:27]",
elasticsearch_1  | "at org.apache.lucene.index.SegmentCoreReaders.<init>(SegmentCoreReaders.java:127) ~[lucene-core-8.8.2.jar:8.8.2 a92a05e195b775b30ca410bc0a26e8e79e7b3bfb - mdrob - 2021-04-06 16:33:27]",
elasticsearch_1  | "at org.apache.lucene.index.SegmentReader.<init>(SegmentReader.java:83) ~[lucene-core-8.8.2.jar:8.8.2 a92a05e195b775b30ca410bc0a26e8e79e7b3bfb - mdrob - 2021-04-06 16:33:27]",
elasticsearch_1  | "at org.apache.lucene.index.StandardDirectoryReader$1.doBody(StandardDirectoryReader.java:66) ~[lucene-core-8.8.2.jar:8.8.2 a92a05e195b775b30ca410bc0a26e8e79e7b3bfb - mdrob - 2021-04-06 16:33:27]",
elasticsearch_1  | "at org.apache.lucene.index.StandardDirectoryReader$1.doBody(StandardDirectoryReader.java:58) ~[lucene-core-8.8.2.jar:8.8.2 a92a05e195b775b30ca410bc0a26e8e79e7b3bfb - mdrob - 2021-04-06 16:33:27]",
elasticsearch_1  | "at org.apache.lucene.index.SegmentInfos$FindSegmentsFile.run(SegmentInfos.java:720) ~[lucene-core-8.8.2.jar:8.8.2 a92a05e195b775b30ca410bc0a26e8e79e7b3bfb - mdrob - 2021-04-06 16:33:27]",
elasticsearch_1  | "at org.apache.lucene.index.StandardDirectoryReader.open(StandardDirectoryReader.java:81) ~[lucene-core-8.8.2.jar:8.8.2 a92a05e195b775b30ca410bc0a26e8e79e7b3bfb - mdrob - 2021-04-06 16:33:27]",
elasticsearch_1  | "at org.apache.lucene.index.DirectoryReader.open(DirectoryReader.java:63) ~[lucene-core-8.8.2.jar:8.8.2 a92a05e195b775b30ca410bc0a26e8e79e7b3bfb - mdrob - 2021-04-06 16:33:27]",
elasticsearch_1  | "at org.elasticsearch.gateway.PersistedClusterStateService.nodeMetadata(PersistedClusterStateService.java:256) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.env.NodeEnvironment.loadNodeMetadata(NodeEnvironment.java:399) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.env.NodeEnvironment.<init>(NodeEnvironment.java:320) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.node.Node.<init>(Node.java:368) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.node.Node.<init>(Node.java:278) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.bootstrap.Bootstrap$5.<init>(Bootstrap.java:217) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.bootstrap.Bootstrap.setup(Bootstrap.java:217) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.bootstrap.Bootstrap.init(Bootstrap.java:397) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:159) ~[elasticsearch-7.13.1.jar:7.13.1]",
elasticsearch_1  | "... 6 more"] }
elasticsearch_1  | uncaught exception in thread [main]
elasticsearch_1  | ElasticsearchException[failed to bind service]; nested: IndexFormatTooNewException[Format version is not supported (resource SimpleFSIndexInput(path="/usr/share/elasticsearch/data/nodes/0/_state/_14l.cfs") [slice=_14l.fdt]): 4 (needs to be between 1 and 3)];
elasticsearch_1  | Likely root cause: org.apache.lucene.index.IndexFormatTooNewException: Format version is not supported (resource SimpleFSIndexInput(path="/usr/share/elasticsearch/data/nodes/0/_state/_14l.cfs") [slice=_14l.fdt]): 4 (needs to be between 1 and 3)
elasticsearch_1  | 	at org.apache.lucene.codecs.CodecUtil.checkHeaderNoMagic(CodecUtil.java:216)
elasticsearch_1  | 	at org.apache.lucene.codecs.CodecUtil.checkHeader(CodecUtil.java:198)
elasticsearch_1  | 	at org.apache.lucene.codecs.CodecUtil.checkIndexHeader(CodecUtil.java:255)
elasticsearch_1  | 	at org.apache.lucene.codecs.compressing.CompressingStoredFieldsReader.<init>(CompressingStoredFieldsReader.java:130)
elasticsearch_1  | 	at org.apache.lucene.codecs.compressing.CompressingStoredFieldsFormat.fieldsReader(CompressingStoredFieldsFormat.java:123)
elasticsearch_1  | 	at org.apache.lucene.codecs.lucene87.Lucene87StoredFieldsFormat.fieldsReader(Lucene87StoredFieldsFormat.java:131)
elasticsearch_1  | 	at org.apache.lucene.index.SegmentCoreReaders.<init>(SegmentCoreReaders.java:127)
elasticsearch_1  | 	at org.apache.lucene.index.SegmentReader.<init>(SegmentReader.java:83)
elasticsearch_1  | 	at org.apache.lucene.index.StandardDirectoryReader$1.doBody(StandardDirectoryReader.java:66)
elasticsearch_1  | 	at org.apache.lucene.index.StandardDirectoryReader$1.doBody(StandardDirectoryReader.java:58)
elasticsearch_1  | 	at org.apache.lucene.index.SegmentInfos$FindSegmentsFile.run(SegmentInfos.java:720)
elasticsearch_1  | 	at org.apache.lucene.index.StandardDirectoryReader.open(StandardDirectoryReader.java:81)
elasticsearch_1  | 	at org.apache.lucene.index.DirectoryReader.open(DirectoryReader.java:63)
elasticsearch_1  | 	at org.elasticsearch.gateway.PersistedClusterStateService.nodeMetadata(PersistedClusterStateService.java:256)
elasticsearch_1  | 	at org.elasticsearch.env.NodeEnvironment.loadNodeMetadata(NodeEnvironment.java:399)
elasticsearch_1  | 	at org.elasticsearch.env.NodeEnvironment.<init>(NodeEnvironment.java:320)
elasticsearch_1  | 	at org.elasticsearch.node.Node.<init>(Node.java:368)
elasticsearch_1  | 	at org.elasticsearch.node.Node.<init>(Node.java:278)
elasticsearch_1  | 	at org.elasticsearch.bootstrap.Bootstrap$5.<init>(Bootstrap.java:217)
elasticsearch_1  | 	at org.elasticsearch.bootstrap.Bootstrap.setup(Bootstrap.java:217)
elasticsearch_1  | 	at org.elasticsearch.bootstrap.Bootstrap.init(Bootstrap.java:397)
elasticsearch_1  | 	at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:159)
elasticsearch_1  | 	at org.elasticsearch.bootstrap.Elasticsearch.execute(Elasticsearch.java:150)
elasticsearch_1  | 	at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:75)
elasticsearch_1  | 	at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:116)
elasticsearch_1  | 	at org.elasticsearch.cli.Command.main(Command.java:79)
elasticsearch_1  | 	at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:115)
elasticsearch_1  | 	at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:81)
elasticsearch_1  | For complete error details, refer to the log at /usr/share/elasticsearch/logs/elastiflow.log
onlyeskibana_elasticsearch_1 exited with code 1

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