Kafka docker - NoSuchFileException:/opt/kafka.server.keystore.jks
我已经通过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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更改变量值以使用
/certs
Change the variable values to use
/certs