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.39k stars 655 forks source link

help with cluster not found errors #68

Closed larryzhu2018 closed 5 years ago

larryzhu2018 commented 5 years ago

hi, Can you please help me troubleshoot the error I reported with this PR: https://github.com/tchiotludo/kafkahq/pull/67

Thanks, --larry

tchiotludo commented 5 years ago

Quick look, and it seems that the app filename is wrong on your docker-compose.yml.

on :

services:
  kafkahq:
    # build:
    #   context: .
    image: tchiotludo/kafkahq
    volumes:
      - ./app.yaml:/app/application.yaml
    ports:
      - 8080:8080
    links:
      - helk-kafka
      - kafka-schema-registry

the - ./app.yaml:/app/application.yaml must be - ./app.yaml:/app/application.yml. not yaml Look at the based framework of kafkahq : https://docs.micronaut.io/snapshot/guide/index.html#config

The convention is to search for a file called application.yml, application.properties, application.json or application.groovy.

larryzhu2018 commented 5 years ago

thanks!