download RDS snapshot

后端 未结 7 1041
Happy的楠姐
Happy的楠姐 2020-12-14 05:22

I recently downgraded my EC2 instance. I can no longer connect to RDS. I think it might be that the internal IP is different and now the logins are attached to that specif

7条回答
  •  眼角桃花
    2020-12-14 06:05

    I also needed to do this so I created a dump of the db (MySQL) by logging into my app server which has permissions to access the db. I then downloaded the dump to my local machine using scp. I used:

    mysqldump -uroot -p -h --single-transaction  > output.sql
    

提交回复
热议问题