You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/test/infra/infra-pgsql17-repl/conf/pgsql/pgsql1/init-replication.sh

11 lines
412 B

#!/bin/bash
set -e
# Create replication user
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
CREATE USER replicator WITH REPLICATION ENCRYPTED PASSWORD 'replicator';
SELECT pg_create_physical_replication_slot('replica_slot_2');
SELECT pg_create_physical_replication_slot('replica_slot_3');
SELECT pg_create_physical_replication_slot('replica_slot_4');
EOSQL