Riley Griffith
05/03/2023, 1:53 PMdocker compose up -d
password authentication failed for user "docker"
and
Role "docker" does not exist.
This is especially strange because I have gotten the same exact setup working in another vm instance, I have verified that there are no differences between flags.yml
, docker-compose.yaml
, and .env
in the two instances, yet it is still failing on one. Any suggestions?
In the failing instance, I did have to take extra steps to allow docker compose up -d
to be run without sudo, whereas I did not have to do this in the first so that could be a clue as to what is going wrong.kapa.ai
05/03/2023, 1:53 PMkapa.ai
05/03/2023, 1:53 PMdocker ps
. You should see 4 containers running. If not, try the following steps: - docker compose down -v
- docker compose up
Keep in mind that these commands will delete all containers, volumes, and data created by Airbyte. We do not recommend this if you already have connections created. 2. Check the server logs for any errors by running docker logs airbyte-server | grep ERROR
. If this command returns any output, run docker logs airbyte-server > airbyte-server.log
. If these steps don't help, I recommend referring to the [Airbyte Troubleshooting documentation](https://docs.airbyte.com/troubleshooting/on-deploying) for more guidance.Riley Griffith
05/03/2023, 5:31 PMdocker compose down -v
command when restarting the docker composeRex Wang
07/19/2023, 4:32 PMIf anyone in the future runs into this, I solved this by adding a -v flag toI'm from the future and appreciate your helpful message which saved my poor 2 hours!!command when restarting the docker composedocker compose down -v