> For the complete documentation index, see [llms.txt](https://docs.whalesync.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.whalesync.com/resources/support/common-errors-postgres.md).

# Common errors - Postgres

### SSL errors while authorizing Postgres (e.g. "self-signed certificate in certificate chain")

When encountering SSL or certificate issues, the "sslmode=no-verify" URL query parameter at the end of your connection string usually does the trick:

```
postgresql://postgres@hostname:5432/postgres?sslmode=no-verify
```

Please see [Authorize Postgres](/connectors/postgres/authorize-postgres.md) for more details about connection strings and URL query parameters.
