No Image

Configure Redis Password

June 25, 2018 0

Configuring a Redis password enables one of its two built-in security feature – the auth command, which requires clients to authenticate to access the database. […]

No Image

Setup Postgres Master Slave Replication

June 11, 2018 0

Configure Master Server $ cd /home/postgres/data $ sudo vi postgresql.conf Edit following lines: listen_address = ‘*’ wal_level = hot_standby synchronous_commit = local archive_mode = on […]

No Image

How to Check Postgres Replication

June 11, 2018 0

Run the following command in Master Node: select application_name, state, sync_priority, sync_state from pg_stat_replication; You should see the below: application_name | state | sync_priority | […]