How to connect Private AWS RDS Database from Local System | SSH Tunnel

Поделиться
HTML-код
  • Опубликовано: 21 дек 2024

Комментарии • 13

  • @mypixelquest
    @mypixelquest 9 месяцев назад

    The tutorial is concise and straightforward. Thank you.

    • @kodedge
      @kodedge  9 месяцев назад

      Thanks for the feedback.

  • @ViníciusAguiar-n8g
    @ViníciusAguiar-n8g 3 месяца назад

    Excelent!

    • @kodedge
      @kodedge  3 месяца назад

      Thanks for the feedback.

  • @카라멜땅콩-p2p
    @카라멜땅콩-p2p 9 месяцев назад

    good topic thank you

    • @kodedge
      @kodedge  9 месяцев назад

      Thanks for the feedback.

  • @KrishnaManohar8021
    @KrishnaManohar8021 9 месяцев назад +1

    First view stamp 🔥

  • @DileepK-li1ig
    @DileepK-li1ig 8 месяцев назад

    How to move aws rds public vpc to private vpc

    • @kodedge
      @kodedge  8 месяцев назад

      So what i understood from your question : you want to move your aws rds from public subnet to private subnet within the same VPC. Is it correct?

    • @DileepK-li1ig
      @DileepK-li1ig 8 месяцев назад

      @@kodedge yes

    • @DileepK-li1ig
      @DileepK-li1ig 8 месяцев назад

      @@kodedge I need to connect local db ssms with aws rds.(windows EC2 instance)

    • @kodedge
      @kodedge  7 месяцев назад +1

      Simplest approach will be :
      1. Create an RDS Snapshot: Take a snapshot of your current RDS instance in the public subnet.
      2. Create a New DB Instance in Private Subnet: Launch a new RDS instance from the snapshot you just created, but select a private subnet during configuration.
      3. Update Applications: Modify your applications to point to the endpoint of the newly created RDS instance in the private subnet.
      4. Terminate Old Instance (Optional): Once you've verified the new instance functions correctly, you can terminate the original instance in the public subnet.
      But in this process there will be additional cost involved, as creating new instance. Also there there will be some downtime involved while applications switch to the new endpoint.
      Second approach will be :
      1. Create new VPC
      2. Create new subnet group with private subnet only
      3. Modify existing database and update subnet group with new subnet group that you have created in step 2.
      Another approach will be kind of workaround :
      repost.aws/knowledge-center/rds-move-to-private-subnet

    • @DileepK-li1ig
      @DileepK-li1ig 7 месяцев назад

      @@kodedge Thank you