Not all files copy #1377
-
I've got everything working and the backup copies off to my S3 bucket, however after the checking the bucket, the db dump doesn't appear to be there, just the copy of the application files. Have I missed a config step to ensure the dump is also copied? |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 2 replies
-
Yes, you probably missed a config |
Beta Was this translation helpful? Give feedback.
-
This is my current config, it's pretty much the OOB one so I'm not sure where it could be wrong? return [
]; |
Beta Was this translation helpful? Give feedback.
-
Laravel version? operating system? package version? On 'dump' => [
'dump_binary_path' => '/MariaDB 10.5/bin/', // only the path, so without `mysqldump` or `pg_dump`
'use_single_transaction',
'timeout' => 60 * 5, // 5 minute timeout
]
|
Beta Was this translation helpful? Give feedback.
-
@erikn69 I've set the Use single transaction and the timeout in the config file, and can see the dump happen in the temp directory while the job is running, it just doesn't get copied to the final destination. Thanks, |
Beta Was this translation helpful? Give feedback.
-
@erikn69 Thank you so much for your time, it is much appreciated! |
Beta Was this translation helpful? Give feedback.
@erikn69
Well, now I feel really stupid, I thought it put the DB dump at the top level, it turns out I just needed to dig into the storage folder in the ZIP file... D'oh!
Thank you so much for your time, it is much appreciated!