-
I set up two instances ("clusters") of PostgreSQL 14.1 on an Unbuntu 18.04 machine with repmgr (v5.3) for both. I find that when I run any repmgr command it prints a warning:
> Warning: No existing…
-
Hello!
While testing failover management provided by PostDock [PostgreSQL 10 repmgr 3.3] using k8s/example2-single-statefulset, I wanted to reduce the time taken to promote replica to master from …
-
-
First I create role 'rep' for repmgr to use like these:
```
CREATE USER rep replication;
CREATE database repmgr WITH OWNER rep;
CREATE EXTENSION repmgr;
GRANT pg_checkpoint TO rep;
GRANT pg_…
-
Hi Team,
I deployed PostgreSql on kubernetes - with One master and 3 slaves in Two ways
1) with Witness (1 Master , 1 Witness and 2 Slaves)
2) without witness (1 Master & 3 slaves)
Intial con…
-
Given this repmgr.conf (repmgr 5.2):
node_id=1
node_name = 'node01'
conninfo = 'host=node01 user=repmgr dbname=repmgr connect_timeout=2'
data_directory = '/opt/postgresql/data'
…
-
Unable to start repmgr-15.service on boot. I am not sure why it is not started. As per service file it should start after postersql-15.service but it is not started. Somehow repmgr trying to connect b…
-
Hi, I'll be looking for secure authentication for Postgres where i should not use .pgpass or trust authentication method.
I have come across a issue during Standby switchover, where the switchover…
-
Hello,
We have an error message after adding the metric replication_lag in temboard-agent.conf. The agent try to connect to the primary server using the default port 5432.However , the port of the…
-
Hello,
I have been trying to implement this and I cannot figure out why this will not work. I have read many people downloading and running as is, but the pgpool never connects to the master or sl…