a year ago
I have a database that is working correctly with the web server. However, when I try to load the database UI, it gets stuck on the database connection and never fully loads. There are no error messages. I already tried redeploying the database without success.
7 Replies
a year ago
Hi brody, thanks for your help. I removed the TCP proxy, redeployed and still the same issue.
a year ago
Hmmm, not too sure why you removed it without adding it back, you need the TCP Proxy to be able to communicate with the database publicly, you just need to point it to the correct port.
a year ago
I was getting the same error today and had to do this in my prisma to get it work again
: `
datasource db {
provider = "postgresql"
url = env("DATABASE_PUBLIC_URL")
// directUrl = env("DATABASE_PUBLIC_URL")
}use the `DATABASE_PUBLIC_URL` directly
a year ago
Yes, I just redeployed after adding the TCP proxy back with the correct port and it's working now! Thank you all for your help.
Status changed to Solved brody • about 1 year ago
