Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Navigate back to the DMS 'Tasks' section and delete the task we created
  2. Navigate back to the DMS 'Replication instances' section and destroy the replication instance to avoid any unnecessary charges.
  3. Remove the firewall rule we created earlier to allow our replication instance to communicate with our source instance
    (replace 40.40.40.40/32 with your replication instance IP, you can also use iptables -S to find this IP):

    No Format
    sudo iptables -D INPUT -p tcp -s 40.40.40.40/32 --dport 3306 -m conntrack --ctstate NEW,ESTABLISHED -j ACCEPT


...