Connection Error: Endpoint ID is not specified

I’m trying to connect using PgBouncer. But I got

FATAL: Endpoint ID is not specified. Either please upgrade the postgres client library (libpq) for SNI support or pass the endpoint ID

I went through this link.. But still not able to get it up and working.

This is my pgbouncer.ini

[databases]
tgpt = host=abcdef.eu-central-1.aws.neon.tech port=5432 dbname=dbname user=myuser password=mypass 

[pgbouncer]
ignore_startup_parameters = extra_float_digits
listen_addr = *
listen_port = 6432
auth_type = md5
auth_file = userlist.txt
server_tls_sslmode = require
pool_mode = session
max_client_conn = 2
default_pool_size = 1
logfile = pgbouncer.log


Got it working.I was skipping project=.

1 Like

Awesome! I appreciate you sending an update :smile:

1 Like