ssl_library
Read PG 18 manual ↗Reports the name of the SSL library that this PostgreSQL server was built with (even if SSL is not currently configured or in use on this instance), for example OpenSSL, or an empty string if none.
- Type
- string
- Context
- internal
- Measured default
- OpenSSL
- Unit
- —
- Metadata snapshot
- 18
Definition PG 18 manual
Reports the name of the SSL library that this PostgreSQL server was built with (even if SSL is not currently configured or in use on this instance), for example OpenSSL, or an empty string if none.
Measured default history
| Version interval | Default |
|---|---|
| 12 – 19 | OpenSSL |
Authored guidance from the GUC source snapshot; the version-specific manual above is the definition reference. View source ↗
How it works
Shows the name of the SSL library. It is read-only and cannot be changed with SET or configuration-file edits.
It reports the SSL implementation linked into the server, which helps diagnose provider-specific TLS behavior.
Interpret it with server_version, server_version_num, server_encoding. Applications and operations tooling may read ssl_library for capability or environment detection, but cannot SET it; cross-cluster comparisons must account for build, initdb, and current-database differences.
Operational considerations
Trying to change read-only ssl_library with SET or a configuration file.
Assuming every cluster, database, or vendor build reports the same value.
Ignoring the value in file-format or feature-compatibility checks.
Treating reported metadata as a performance target instead of an environment fact.
Workload guidance
OLAP: Not tunable. Use ssl_library to verify format, build, or resource assumptions on analytical nodes and keep every read/write candidate compatible.
OLTP: Not tunable. Record ssl_library as a deployment/capability fact; if it is unexpected, fix the binary, initdb, or database-creation process rather than trying SET.
SMALL: Not tunable. Preserve it in inventory and incident reports; do not custom-build or rebuild merely to change it without a demonstrated compatibility need.
Version history 2
- PG 13 → 14changed
- PG 11 → 12added
Related entries
Further reading
Definition snapshot: english-manuals:f047dba94d6c1fe6cf8da3099b1… · English manual source