laravel / blog-contest-may-mayhem

242 stars 16 forks source link

Scheduling MySQL Backups with Laravel #13

Closed iamgergo closed 3 years ago

iamgergo commented 6 years ago

https://pineco.de/scheduling-mysql-backups-with-laravel/

RicardoRamirezR commented 6 years ago

@iamgergo If I may, I would suggest that you add a section to compress the resulting dumped file

iamgergo commented 6 years ago

@RicardoRamirezR Thank you for your suggestion! I thought to do that, but I tried to keep the post as small as I could. For sure, it would be useful! But I won't change anything to be fair in the competition. Thanks again!

freekmurze commented 6 years ago

Shamelessly plugging our backup page here.

It's easily installed into any Laravel app. It can dump your db and, together with files you can select in a config file, zip it and copy that zip to an external filesystem. It can also notify you when things go wrong.

https://docs.spatie.be/laravel-backup/v5/introduction

iamgergo commented 6 years ago

@freekmurze I started my post with saying if anyone needs a fully solution, should check your package. The post is not more but covering some possibilities.