Troubleshooting
Integration Troubleshooting
Connection Issues with Docker-Deployed PostgreSQL
2 min
if you try to connect to a postgresql database that is deployed through docker, you may see the following error message connection lost | pq unknown authentication response 10 solution note this solution is for postgresql version 10 and later in litmus edge, navigate to applications > containers and run the following command docker run d name some postgres restart=always e postgres password=password e postgres host auth method="password" p 5432 5432 postgres as of postgresql version 10, the postgres host auth method parameter was changed to default md5 because of this, you will need to override the default postgres host auth method parameter to be password instead note litmus edge integration connector does not support the authentication method scram sha 256 for information on the postgresql authentication methods, see the postgresql documentation