Build and install microcks from scratch #1273
-
Hello,
At this step I receive next error:
Do you have any idea what I missed for the setup? Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hey @gabifericean Thanks for trying this out! That's a good start but you're actually missing some ingredients 😉 As you're willing to work with Kafka and AsyncAPI, you need some more stuff:
That way you'll have the required elements! Then looking at your error in the log, I suspect that the service It may be simpler for a first ride to do this via the UI. |
Beta Was this translation helpful? Give feedback.
-
@lbroudoux I still struggling to configure microcks to work with Kafka that is configured to use OAUTHBEARER mechanism for authentication. With the current setup, I tried to validate/test some messages on our Kafka topics (Kafka is part of our product). I don't use Kafka for mocking.
Kafka is configured to use authentication. The problem that I have is to configure async minions to connect to the kafka using the SASL_SSL protocol. I tried to use a jaas configuration file: Access to Kafka broker. command to start Microcks: java -jar microcks-app-1.10.0-exec.jar On async minions logs I see next error: Any help will be highly appreciate it! Thank you for your support! |
Beta Was this translation helpful? Give feedback.
Hey @gabifericean
Thanks for trying this out! That's a good start but you're actually missing some ingredients 😉
As you're willing to work with Kafka and AsyncAPI, you need some more stuff:
webapp/src/main/resources/config/application.properties
, you need to set theasync-api.enabled
property totrue
webapp/src/main/resources/config/features.properties
, you need to set thefeatures.feature.async-api.enabled
totrue
minions/async/redpanda.sh
script to launch a local Kafka container that will be bound tolocalhost:9092
(the default in configuration files)Async Minion
com…