Replies: 2 comments 2 replies
-
I have the same issue. Does anyone know the fix? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Any solutions ? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi Everyone. New to Supabase.
I'm tasked to create new roles for our services & users.
First, I created a role without login (
service_read_write
), and added the privileges that we wanted.Then, I created a role that will login and made it a member of
service_read_write
:GRANT service_read_write TO new_user_01;
I then use the connection string to attempt to login:
postgres://new_user_01.[supabaseId]:[myPassword]@aws-0-us-east-1.pooler.supabase.com:5432/[my_db]
I keep getting this error:
There is at most 8 connections to the database since this is a new database on supabase. If i switch users to
postgres
and try to connect I immediately connect to the database.Anyone know why custom roles won't be able to connect? I know our CREATE ROLE & privileges work since we tried them out on another postgres instance on RDS without issue. But when we do it on supabase we keep getting the above error.
Beta Was this translation helpful? Give feedback.
All reactions