I have installed the new camunda 8.8-alpha7 with a docker compose.
My only changes in .env file are:
ZEEBE_AUTHENTICATION_MODE=identity
and
MULTI_TENANCY_ENABLED=true
CAMUNDA_SECURITY_AUTHENTICATION_UNPROTECTEDAPI=false
After the sturtup ( docker compose -p camunda88 up -d), my cluster status is
| NAMES | STATUS |
|---|---|
| web-modeler-webapp | Up 2 minutes (healthy) |
| optimize | Up 3 minutes (healthy) |
| web-modeler-restapi | Up 3 minutes (healthy) |
| connectors | Up 4 minutes (unhealthy) |
| identity | Up 3 minutes (healthy) |
| keycloak | Up 4 minutes (healthy) |
| zeebe | Up 4 minutes (healthy) |
| mailpit | Up 4 minutes (healthy) |
| web-modeler-db | Up 4 minutes (healthy) |
| web-modeler-websockets | Up 4 minutes (healthy) |
| elasticsearch | Up 4 minutes (healthy) |
| postgres | Up 4 minutes (healthy) |
The conectors has a lot of this authetnitcation error:
io.grpc.StatusRuntimeException: UNAUTHENTICATED: Expected authentication information to start with 'Basic '
at io.grpc.Status.asRuntimeException(Status.java:532)
at io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:564)
at io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:565)
at io.grpc.internal.ClientCallImpl.access$100(ClientCallImpl.java:72)
at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:733)
at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:714)
at io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.base/java.lang.Thread.run(Unknown Source)
so when i try to “deploy&run” my first process, i get this exception into web-modeler-restapi:
Caused by: java.util.concurrent.ExecutionException: io.grpc.StatusRuntimeException: UNAUTHENTICATED: Expected authentication information to start with 'Basic '
at java.base/java.util.concurrent.CompletableFuture.wrapInExecutionException(Unknown Source)
at java.base/java.util.concurrent.CompletableFuture.reportGet(Unknown Source)
at java.base/java.util.concurrent.CompletableFuture.get(Unknown Source)
at io.camunda.client.impl.CamundaClientFutureImpl.join(CamundaClientFutureImpl.java:51)
... 193 common frames omitted
Caused by: io.grpc.StatusRuntimeException: UNAUTHENTICATED: Expected authentication information to start with 'Basic '
at io.grpc.Status.asRuntimeException(Status.java:532)
at io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:564)
at io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489)
at io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453)
at io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486)
at io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:565)
at io.grpc.internal.ClientCallImpl.access$100(ClientCallImpl.java:72)
at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:733)
at io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:714)
at io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37)
at io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
... 1 common frames omitted
2025-08-26 12:07:10.846 INFO 1 --- [ XNIO-1 task-2] [bf33e518-1ffd-42c0-a0cf-f3f942383da9] i.c.m.util.logging.RequestLoggingFilter : 638ef9c0-7860-4457-a522-f0690b530aef "POST /internal-api/files/f01bf3fd-d0f7-478c-99ea-a44c6b39a32a/execute, headers=[sec-fetch-mode:"cors", referer:"http://localhost:8070/diagrams/f01bf3fd-d0f7-478c-99ea-a44c6b39a32a--new-bpmn-diagram?v=760,386,1", content-length:"65", expires:"0", sec-fetch-site:"same-origin", x-client-version:"15bca27389885e8f58613df444d5b8ebdb2ac700", accept-language:"en,it-IT;q=0.9,it;q=0.8,en-US;q=0.7", origin:"http://localhost:8070", Connection:"keep-alive", x-correlation-id:"bf33e518-1ffd-42c0-a0cf-f3f942383da9", Host:"web-modeler-restapi:8081", pragma:"no-cache", accept:"application/json; charset=utf-8", accept-charset:"utf-8", authorization:"masked", x-request-source:"script", sec-ch-ua:""Not;A=Brand";v="99", "Google Chrome";v="139", "Chromium";v="139"", sec-ch-ua-mobile:"?0", sec-ch-ua-platform:""Windows"", content-type:"application/json; charset=utf-8", cache-control:"no-cache", accept-encoding:"gzip, deflate, br, zstd", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36", sec-fetch-dest:"empty"]" - 500 INTERNAL_SERVER_ERROR
Where is my mistake?