-
Hi Ludovic, I would like to test standalone AKHQ in combination with Bitnami Kafka VM Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Please provide a full stacktrace please ? |
Beta Was this translation helpful? Give feedback.
-
It is working now with the minimal configuration in application.yml: KafkaClient username and password is from /opt/bitnami/kafka/config/kafka_jaas.conf During tests I see an error in "Consumer Groups" menu "Internal Server Error: from Index = -25" when clicking on "»" in « 1 of 0 » menu. The same error using your docker container instead bitnami VM. 2022-01-05 10:33:19,246 INFO r-thread-2 org.akhq.log.access [Date: 2022-01-05T10:33:19.235602Z] [Duration: 10 ms] [Url: GET /api/localhost/group] [Status: 200] [Ip: /192.168.110.21] [User: -] |
Beta Was this translation helpful? Give feedback.
It is working now with the minimal configuration in application.yml:
akhq:
connections:
localhost:
properties:
bootstrap.servers: "localhost:9092"
security.protocol: SASL_PLAINTEXT
sasl.mechanism: PLAIN
sasl.jaas.config: org.apache.kafka.common.security.plain.PlainLoginModule required username="user" password="password";
KafkaClient username and password is from /opt/bitnami/kafka/config/kafka_jaas.conf
Bitnami docs: https://docs.bitnami.com/general/infrastructure/kafka/
During tests I see an error in "Consumer Groups" menu "Internal Server Error: from Index = -25" when clicking on "»" in « 1 of 0 » menu. The same error using your docker container instead bitnami VM.
2022-01-05 10:33:19,2…