Answer the question
In order to leave comments, you need to log in
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
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)
How critical is it to make a request manually? Will you try guzzle ?
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);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question