Redis is used for storing the sync status and filling queues that pass qx data to consumers.
Set server port. Example:
server.port=8084
Defaults point to localhost and the default redis port without authorization. You can change that with the following properties:
spring.data.redis.port=...
spring.data.redis.host=...
spring.data.redis.password=...
If you want to access secured endpoints (like prometheus metrics) you need to authenticate and configure user information.
spring.security.user.name=...
spring.security.user.password=...