Amit Kumar Agrawal
Amit Kumar Agrawal

Reputation: 31

I am getting error while running cadence service

I am getting below error after I did docker-compose up

cadence_1      | Connection error: ('Unable to connect to any servers', {'172.18.0.3:9042': error(111, "Tried connecting to [('172.18.0.3', 9042)]. Last error: Connection refused")})
cadence_1      | + echo 'waiting for cassandra to start up'
cadence_1      | + sleep 1
cadence_1      | waiting for cassandra to start up
cadence_1      | + cqlsh --cqlversion=3.4.4 cassandra
cadence_1      | Connection error: ('Unable to connect to any servers', {'172.18.0.3:9042': error(111, "Tried connecting to [('172.18.0.3', 9042)]. Last error: Connection refused")})
cadence_1      | + echo 'waiting for cassandra to start up'
cadence_1      | + sleep 1

Upvotes: 0

Views: 550

Answers (1)

Maxim Fateev
Maxim Fateev

Reputation: 6870

Try pruning your volumes. Execute:

docker-compose down
docker volume prune
docker-compose up

Upvotes: 1

Related Questions