License activation fails — /v1 endpoint returns HTTP 404 despite successful connectivity #47
Closed
rvardy-citco
started this conversation in
Bugs
Replies: 1 comment
|
Hi @rvardy-citco, I will continue discussing and working through this issue with you via your support ticket. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Description
LocalStack container exits immediately with code 55 ("License activation failed") because it cannot successfully validate the auth token. However, outbound HTTPS connectivity to api.localstack.cloud is confirmed working — the issue appears to be that the licensing endpoint is returning HTTP 404.
Environment
beafe195a)localstack/localstack:latest~> 6.0nodejs20.xdocker-compose.yml (relevant section)
Steps to reproduce
docker compose upwith a validLOCALSTACK_AUTH_TOKENset in.envObserved behavior
Connectivity verification
Per the LocalStack FAQ on outbound connectivity, I ran:
Result: The TLS handshake and connection succeed (no network or certificate errors), but the endpoint returns HTTP 404. This suggests the server is reachable but the licensing API route is not responding as expected.
Expected behavior
The
/v1licensing endpoint should return a valid response (e.g., 200 or 401 for bad tokens) rather than 404. The container should start normally with a valid auth token.All reactions