Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Localstack - Can't access dashboard

Tags:

localstack

I'm using localstack to simulate SNS and SQS but every time I try to use the dashboard I keep getting this error:

    2019-08-19T09:59:58:WARNING:localstack.dashboard.infra: Error running command: { test `which aws` || . .venv/bin/activate; }; aws --endpoint-url="http://localhost:4576" sqs list-queues [Errno 1] Operation not permitted: '/tmp/cache.b40b5dc1d0a8d40f3b34502cd285c718.json

I'm running localstack with the docker flag because I don't think I can get the dashboard without docker.

like image 698
Tiago Martins Avatar asked Dec 18 '22 16:12

Tiago Martins


1 Answers

A little deep in the README.md for the github localstack it says:

PORT_WEB_UI: Port for the Web user interface / dashboard (default: 8080). 
Note that the Web UI is now deprecated, 
and requires to use the localstack/localstack-full Docker image.

Try using the localstack/localstack-full image instead.

like image 186
cosbor11 Avatar answered Mar 12 '23 23:03

cosbor11