Hi! I’m running an issue running migrations on a p...
# talk-kratos
f
Hi! I’m running an issue running migrations on a postgres database that requires ssl (using a managed postgres instance on Render) Executing the following migrate command runs into a connection error:
server error (FATAL: SSL/TLS required (SQLSTATE 28000))
.
Copy code
kratos migrate sql "<postgres://user:pass@host.ohio-postgres.render.com/db?ssl=true>"
However running
psql
with the same connection string works. I got around this by running the command within the private network where an ssl connection to the db isn’t required, but wanted to flag this in case anyone else runs into the same thing.