Reputation: 63
I am working on Whatsapp Business API. When i am trying to access the API, it shows me an error with
"details": "Connection refused. Please check if wacore is running."
Any help to solve it. This is my Docker Whatsapp container running
Upvotes: 1
Views: 2914
Reputation: 404
From my experience setting up the servers on AWS, there are 2 things that cause this error message to be returned.
Upvotes: 0
Reputation: 176
This usually means your waweb is running but your wacore container is not running or you somehow restart the wacore container.
You could run
docker ps -a
To find out the wacore container And run
Docker logs containerid
to see the logs , if you could grab the logs I could see why wacore is down for you
shutdown and restart normally will help
docker-compose down
docker-compose up -d
Upvotes: 0