Has anybody faced an issue with airbyte-temporal n...
# contributing-to-airbyte
a
Has anybody faced an issue with airbyte-temporal not starting and writing next errors
Copy code
airbyte-temporal    | + nc -z db 5432
airbyte-temporal    | nc: bad address 'db'
airbyte-temporal    | + '[' 1 -eq 0 ']'
airbyte-temporal    | + echo 'waiting for postgresql to start up'
airbyte-temporal    | + sleep 1
airbyte-temporal    | waiting for postgresql to start up
u
i have not
u
is the database container starting up properly?
u
it depends on the db in the airbyte-db container
u
hmm, I think that I somehow ran out of disk space….
u
Copy code
airbyte-db          | initdb: error: could not create directory "/var/lib/postgresql/data/pg_wal": No space left on device
But thats actually strange because I have ~100gb free
u
Is that free disk space allocated to Docker? Built images usually take up a ton of space for me personally.
u
Copy code
docker rm -f $(docker ps -a -q)
docker volume rm $(docker volume ls -q)
docker image prune  -a
docker system prune
(warning this nukes all docker images and volumes, but this is what i use when i run into this problem)
u
well usually I do next command
Copy code
docker rm -f $(docker ps -a -q -f name=airbyte)
 docker volume rm $(docker volume ls -q -f name=airbyte)
u
everything was working fine, until I decided to switch versions here and there to force server to return Airbyte Version mismatch error. And at some moment db stopped working.
u
I tried to nuke volumes + all other info ( command above +
docker system prune -a
). It was not helping, but I restart macos, deleted bunch of files and applications and now everything is working…. Thank you all guys for the help 🙂 @charles @Jared Rhizor (Airbyte)
u
lol. nice.
u
tbh, when i get in these weird states, restarting docker for mac often fixes things. docker seems to get into a whack state somtimes.