pgmqtt 0.4.1
Installation
- Download the tarball for your PostgreSQL version and architecture
- Extract it:
tar xzf pgmqtt-pg16-amd64.tar.gz
- Copy the files into your PostgreSQL installation:
cp pgmqtt-pg16-amd64/lib/pgmqtt.so $(pg_config --pkglibdir)/ cp pgmqtt-pg16-amd64/extension/* $(pg_config --sharedir)/extension/
- Add to
postgresql.conf:shared_preload_libraries = 'pgmqtt' wal_level = logical - Restart PostgreSQL and create the extension:
CREATE EXTENSION pgmqtt;
Included artifacts
| File | PostgreSQL | Architecture |
|---|---|---|
pgmqtt-pg15-amd64.tar.gz |
15.x | x86_64 |
pgmqtt-pg15-arm64.tar.gz |
15.x | aarch64 |
pgmqtt-pg16-amd64.tar.gz |
16.x | x86_64 |
pgmqtt-pg16-arm64.tar.gz |
16.x | aarch64 |
pgmqtt-pg17-amd64.tar.gz |
17.x | x86_64 |
pgmqtt-pg17-arm64.tar.gz |
17.x | aarch64 |
pgmqtt-pg18-amd64.tar.gz |
18.x | x86_64 |
pgmqtt-pg18-arm64.tar.gz |
18.x | aarch64 |
All artifacts have been tested via CI before release.