Skip to content

Commit

Permalink
Merge pull request #5500 from EnterpriseDB/efm/prerequisites-slot_pri…
Browse files Browse the repository at this point in the history
…vileges_needed

Add information about slot privileges needed
  • Loading branch information
EFM-Bobby authored Apr 16, 2024
2 parents af2eadc + c8114a0 commit e204177
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions product_docs/docs/efm/4/installing/prerequisites.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,12 @@ If the `reconfigure.num.sync` or `reconfigure.sync.primary` property is set to `

For detailed information about each of these functions, see the [PostgreSQL core documentation](https://www.postgresql.org/docs/current/index.html).

If the `update.physical.slots.period` property is used, then the db.user requires the `REPLICATION` privilege. A database superuser can provide the permissions needed:

```sql
ALTER USER <user_name> REPLICATION;
```

The user must also have permissions to read the values of configuration variables. A database superuser can use the PostgreSQL `GRANT` command to provide the permissions needed:

```sql
Expand Down

1 comment on commit e204177

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.