I have a very strange issue: Prisma is saying my a...
# orm-help
p
I have a very strange issue: Prisma is saying my auth details are wrong, but the same URL works fine in Sequel Ace, and I can also connect command line (
mysql -u etc
) from my laptop, so there is no firewall or other issue.. There are no strange chars in the URL that would need encoding. Any pointers? Even at highest debug level, Prisma doesn’t show the password it sends (which I understand from security standpoint, but still, the only thing I can think of is it sending a different password than I tell it to…)?
o
@PanMan how are you passing
DATABASE_URL
to the node process ?
p
via env vars, but right now I’m also testing with npx prisma init --url
I can see it connects to the right host/username so I think the password should be oke
After pulling our my hair for hours, I found the issue…
I forced SSL on the host, but prisma doesn’t use SSL when connecting (still figuring out why…)