Npgsql: Can't connect to PG 9.5 because of ssl_renegotiation_limit

Created on 14 Oct 2015  路  5Comments  路  Source: npgsql/npgsql

Got the error message: unrecognized configuration parameter "ssl_renegotiation_limit"
The server configuration parameter 'ssl_renegotiation_limit' has been removed in the PostgreSQL 9.5.
http://www.postgresql.org/docs/9.5/static/release-9-5.html

Most helpful comment

If you can't wait for the next 9.5 beta, you can work around this by specifying "Server Compatibility Mode=Redshift" in the connection string.

All 5 comments

Thanks for reporting, what version of Npgsql are you on?

Npgsql 2.2.7

Conversation in pgsql-hackers on putting back the ssl_renegotiation_limit parameter: http://www.postgresql.org/message-id/[email protected]

The pgsql-hackers accepted my patch which makes PostgreSQL accept this parameter, but only when it's 0, for backwards compatibility. This allows us to continue sending it in the startup packet as before.

If you can't wait for the next 9.5 beta, you can work around this by specifying "Server Compatibility Mode=Redshift" in the connection string.

Was this page helpful?
0 / 5 - 0 ratings