You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Check that the replication slot has been dropped (sometimes this can happen if you don't have the ability to drop the slot yourself (say the server disappeared)):
select * from pg_replication_slots ;
This shouldn't show the slot anymore, but if it does, you can drop it manually with:
select pg_drop_replication_slot('opendata');
Delete their user from our server:
\du;
REVOKE ALL PRIVILEGES ON ALL TABLES IN SCHEMA public FROM xxx;
DROP USER xxx;
\du
In AWS itself
Remove the inbound and outbound network allowances. In AWS this is done through your VPC's security group. The one to edit is: sg-044759e3ba310566a.
The text was updated successfully, but these errors were encountered:
We have a client that is no longer interested in our replication service. Tear it down and clean up any remaining bits and pieces.
The process seems to be:
On their server
Login:
Show their subscriptions and note the
subslotname
andsubpublications
name:Delete their subscription to our server:
On our replication server in AWS:
Show all publications:
Drop the publication:
Check that the replication slot has been dropped (sometimes this can happen if you don't have the ability to drop the slot yourself (say the server disappeared)):
This shouldn't show the slot anymore, but if it does, you can drop it manually with:
Delete their user from our server:
In AWS itself
Remove the inbound and outbound network allowances. In AWS this is done through your VPC's security group. The one to edit is: sg-044759e3ba310566a.
The text was updated successfully, but these errors were encountered: