Kafka docker - NoSuchFileException:/opt/kafka.server.keystore.jks

发布于 2025-01-10 21:04:15 字数 2425 浏览 0 评论 0原文

我已经通过docker安装了kafka。 当我运行 docker-compose up 命令时,我遇到以下错误:

 [2022-02-28 08:13:24,185] INFO Awaiting socket connections on localhost:9092. (kafka.network.Acceptor)

kafka        | [2022-02-28 08:13:24,216] ERROR Modification time of key store could not be obtained: /opt/kafka.server.keystore.jks (org.apache.kafka.common.security.ssl.DefaultSslEngineFactory)

kafka        | java.nio.file.NoSuchFileException: /opt/kafka.server.keystore.jks

kafka        |  at sun.nio.fs.UnixException.translateToIOException(UnixException.java:86)

kafka        |  at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:102)

kafka        |  at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:107)

kafka        |  at sun.nio.fs.UnixFileAttributeViews$Basic.readAttributes(UnixFileAttributeViews.java:55)

kafka        |  at sun.nio.fs.UnixFileSystemProvider.readAttributes(UnixFileSystemProvider.java:144)

kafka        |  at sun.nio.fs.LinuxFileSystemProvider.readAttributes(LinuxFileSystemProvider.java:99)

kafka        |  at java.nio.file.Files.readAttributes(Files.java:1737)

kafka        |  at java.nio.file.Files.getLastModifiedTime(Files.java:2266)

kafka        |  at org.apache.kafka.common.security.ssl.DefaultSslEngineFactory$FileBasedStore.lastModifiedMs(DefaultSslEngineFactory.java:383)

ERROR Modification time of key store could not be obtained: /opt/kafka.server.keystore.jks

Failed to load SSL keystore /opt/kafka.server.keystore.jks of type JKS

下面是我的 docker-compose.yml 文件:

version: '3'

services:
  zookeeper:
    image: wurstmeister/zookeeper
    container_name: zookeeper
    ports:
      - "2181:2181"

  kafka:
    image: wurstmeister/kafka
    depends_on:
      - zookeeper
    container_name: kafka
    ports:
      - "9092:9092"
    environment:
      KAFKA_ADVERTISED_LISTENERS: 'SSL://localhost:9092'
      KAFKA_LISTENERS: 'SSL://localhost:9092'
      KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'true'
      KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181'
      KAFKA_SSL_KEYSTORE_LOCATION: '/opt/kafka.server.keystore.jks'
      KAFKA_SSL_KEYSTORE_PASSWORD: 'changeit'
      KAFKA_SSL_KEY_PASSWORD: 'changeit'
      KAFKA_SSL_TRUSTSTORE_LOCATION: '/home/ubuntu/kafka.server.truststore.jks'
      KAFKA_SSL_TRUSTSTORE_PASSWORD: 'changeit'
      KAFKA_SECURITY_INTER_BROKER_PROTOCOL: 'SSL'
    volumes:
      - ./server_certs:/certs

I have installed kafka via docker.
When i run the docker-compose up command I face following errors:

 [2022-02-28 08:13:24,185] INFO Awaiting socket connections on localhost:9092. (kafka.network.Acceptor)

kafka        | [2022-02-28 08:13:24,216] ERROR Modification time of key store could not be obtained: /opt/kafka.server.keystore.jks (org.apache.kafka.common.security.ssl.DefaultSslEngineFactory)

kafka        | java.nio.file.NoSuchFileException: /opt/kafka.server.keystore.jks

kafka        |  at sun.nio.fs.UnixException.translateToIOException(UnixException.java:86)

kafka        |  at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:102)

kafka        |  at sun.nio.fs.UnixException.rethrowAsIOException(UnixException.java:107)

kafka        |  at sun.nio.fs.UnixFileAttributeViews$Basic.readAttributes(UnixFileAttributeViews.java:55)

kafka        |  at sun.nio.fs.UnixFileSystemProvider.readAttributes(UnixFileSystemProvider.java:144)

kafka        |  at sun.nio.fs.LinuxFileSystemProvider.readAttributes(LinuxFileSystemProvider.java:99)

kafka        |  at java.nio.file.Files.readAttributes(Files.java:1737)

kafka        |  at java.nio.file.Files.getLastModifiedTime(Files.java:2266)

kafka        |  at org.apache.kafka.common.security.ssl.DefaultSslEngineFactory$FileBasedStore.lastModifiedMs(DefaultSslEngineFactory.java:383)

ERROR Modification time of key store could not be obtained: /opt/kafka.server.keystore.jks

Failed to load SSL keystore /opt/kafka.server.keystore.jks of type JKS

Below is my docker-compose.yml file:

version: '3'

services:
  zookeeper:
    image: wurstmeister/zookeeper
    container_name: zookeeper
    ports:
      - "2181:2181"

  kafka:
    image: wurstmeister/kafka
    depends_on:
      - zookeeper
    container_name: kafka
    ports:
      - "9092:9092"
    environment:
      KAFKA_ADVERTISED_LISTENERS: 'SSL://localhost:9092'
      KAFKA_LISTENERS: 'SSL://localhost:9092'
      KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'true'
      KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181'
      KAFKA_SSL_KEYSTORE_LOCATION: '/opt/kafka.server.keystore.jks'
      KAFKA_SSL_KEYSTORE_PASSWORD: 'changeit'
      KAFKA_SSL_KEY_PASSWORD: 'changeit'
      KAFKA_SSL_TRUSTSTORE_LOCATION: '/home/ubuntu/kafka.server.truststore.jks'
      KAFKA_SSL_TRUSTSTORE_PASSWORD: 'changeit'
      KAFKA_SECURITY_INTER_BROKER_PROTOCOL: 'SSL'
    volumes:
      - ./server_certs:/certs

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

亽野灬性zι浪 2025-01-17 21:04:15

更改变量值以使用 /certs

version: '3'

services:
  zookeeper:
    image: wurstmeister/zookeeper
    container_name: zookeeper
    ports:
      - "2181:2181"

  kafka:
    image: wurstmeister/kafka
    depends_on:
      - zookeeper
    container_name: kafka
    ports:
      - "9092:9092"
    environment:
      KAFKA_ADVERTISED_LISTENERS: 'SSL://localhost:9092'
      KAFKA_LISTENERS: 'SSL://localhost:9092'
      KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'true'
      KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181'
      KAFKA_SSL_KEYSTORE_LOCATION: '/certs/kafka.server.keystore.jks'
      KAFKA_SSL_KEYSTORE_PASSWORD: 'changeit'
      KAFKA_SSL_KEY_PASSWORD: 'changeit'
      KAFKA_SSL_TRUSTSTORE_LOCATION: '/certs/kafka.server.truststore.jks'
      KAFKA_SSL_TRUSTSTORE_PASSWORD: 'changeit'
      KAFKA_SECURITY_INTER_BROKER_PROTOCOL: 'SSL'
    volumes:
      - ./server_certs:/certs

Change the variable values to use /certs

version: '3'

services:
  zookeeper:
    image: wurstmeister/zookeeper
    container_name: zookeeper
    ports:
      - "2181:2181"

  kafka:
    image: wurstmeister/kafka
    depends_on:
      - zookeeper
    container_name: kafka
    ports:
      - "9092:9092"
    environment:
      KAFKA_ADVERTISED_LISTENERS: 'SSL://localhost:9092'
      KAFKA_LISTENERS: 'SSL://localhost:9092'
      KAFKA_AUTO_CREATE_TOPICS_ENABLE: 'true'
      KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181'
      KAFKA_SSL_KEYSTORE_LOCATION: '/certs/kafka.server.keystore.jks'
      KAFKA_SSL_KEYSTORE_PASSWORD: 'changeit'
      KAFKA_SSL_KEY_PASSWORD: 'changeit'
      KAFKA_SSL_TRUSTSTORE_LOCATION: '/certs/kafka.server.truststore.jks'
      KAFKA_SSL_TRUSTSTORE_PASSWORD: 'changeit'
      KAFKA_SECURITY_INTER_BROKER_PROTOCOL: 'SSL'
    volumes:
      - ./server_certs:/certs
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文