tchiotludo / akhq

Kafka GUI for Apache Kafka to manage topics, topics data, consumers group, schema registry, connect and more...
https://akhq.io/
Apache License 2.0
3.34k stars 646 forks source link

No configuration setting found for key 'kafka.connections' #19

Closed omnipresent07 closed 5 years ago

omnipresent07 commented 5 years ago

I get a 500 error when I visit localhost:8080.

Server Error
message: No configuration setting found for key 'kafka.connections'
status: 500

I am using the application.conf below.

{
  kafka {
    connections {
      my-cluster-1 {
          bootstrap.servers: "myserver:1025"
      }
    }
  }
}

I'm launching the docker container like this:

docker run -d \
    -p 8080:8080 \
    -v application.conf:/app/application.conf \
    tchiotludo/kafkahq
tchiotludo commented 5 years ago

I just realize that the path to configuration files must be absolute. I've just fix the README.me to avoid errors