Problems with versions 0.5.0 and 0.7.1 #4010
-
Sorry, to continue with the question #3997 (registrations cannot be null or empty) Thank you very much for your answers, unfortunately I did not find the solution to my problems in the recommended links and the Q&A is closed. I summarize: Topic 1- Secure connection to MSK: KAFKA_CLUSTERS_0_NAME=MSK-CLT-INTEGRATION-INTEGRATIONBUS Version 0.5.0: It works perfectly. Failed to collect cluster MSK-CLT-INTEGRATION-INTEGRATIONBUS info java.lang.IllegalStateException: Error while creating AdminClient for Cluster MSK-CLT-INTEGRATION-INTEGRATIONBUS Caused by: org.apache.kafka.common.KafkaException: org.apache.kafka.common.KafkaException: Failed to load SSL keystore /etc/kafka/secrets/kafka.truststore.jks of type JKS Topic 2- Use of OAuth2: AUTH_TYPE=OAUTH2 Version 0.5.0: I get the following errors: Application run failed Error creating bean with name 'defaultOidcLogoutHandler' defined in class path resource Error creating bean with name 'clientRegistrationRepository' defined in class path resource Failed to instantiate [org.springframework.security.oauth2.client.registration.InMemoryReactiveClientRegistrationRepository]: Factory method 'clientRegistrationRepository' threw exception; nested exception is java.lang.NullPointerException: Cannot invoke "java.util.Map.get(Object)" because the return value of "com.provectus.kafka.ui.config.auth.OAuthProperties$OAuth2Provider.getCustomParams()" is null Version 0.7.1: I get the following errors: In the web browser: Secure Connection Failed Regards, Sergio |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
For the first issue, refer to 0.6.0 changelog's breaking changes section: here For the second one, you're trying to access localhost:8080 with SSL enabled (HTTPS in your url) which doesn't have SSL enabled on this endpoint. Either use HTTP or put your kafka-ui behind the reverse proxy (or enable one right in k-ui (unrecommended): here) |
Beta Was this translation helpful? Give feedback.
For the first issue, refer to 0.6.0 changelog's breaking changes section: here
For the second one, you're trying to access localhost:8080 with SSL enabled (HTTPS in your url) which doesn't have SSL enabled on this endpoint. Either use HTTP or put your kafka-ui behind the reverse proxy (or enable one right in k-ui (unrecommended): here)