This script connects to a postgresql instance, checks the certificate and displays the amount of days left before it expires. It's intended to be used for monitoring your postgresql certificates, using a monitoring tool like Zabbix or Nagios.
I used to monitor my postgresql certificates using openssl
. Unfortunately, the openssl s_client
option does not support the postgresql handshake, and can therefore only look at the .crt
file to monitor the expiration date.
As postgresql needs to be restarted after the .crt
file was replaced, the actual file might be updated, but postgresql is still using the old certificate in-memory, until the server is restarted (as of postgresql-9.5, reload
is not sufficient to read in the new certificate).
Precompiled versions (linux-amd64, osx-amd64) are available on the release page.
Download the file, extract it and move it to e.g. /usr/local/bin
.
go build -o pg-check-cert *.go
pg-check-cert localhost:5432
- thusoy/postgres-migm for the inspiration.
buf.go
andconn.go
are taken from lib/pq, see copyright notice in the respective files.