O
O
Oleg Petrov2019-03-26 10:51:24
Amazon Web Services
Oleg Petrov, 2019-03-26 10:51:24

How to save Amazon rds database backups to your computer?

Amazon rds makes daily database backups. Is it possible to save them to your computer?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
E
Eugene, 2019-04-13
@Smeilz1

RDS makes backups of the cluster, even if it is single node.
As far as I know (I don’t have such a need to work and I don’t do it), you can set up an additional backup of the database using AWS Backup solutions in S3 and unload from there.
Or dump the base when you need it (as a rule, developers do this in pre-production with small bases)

A
Artur Bordenyuk, 2016-12-24
@HighQuality

How critical is it to make a request manually? Will you try guzzle ?

I
Ilya, 2016-12-24
@glebovgin

Try the most basic option, then determine exactly where the problem is.

$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, 'https://ru.sitename.com/');
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); 
$out = curl_exec($curl);
curl_close($curl);

And don't be lazy to look at curl_getinfo();

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question