cpanel backup script to overcome php limits?

postcd

Well-Known Member
Oct 22, 2010
721
21
68
Hello,

which way can i backup 70mb big mysql cpanel database so i dont reach my PHP limits (execution time, max memory etc..)?
It appears my automatic php backup script no longer works because mysql is too big. Any AUTOMATED mysl backup script which can backup in batches or with delays so limits are not reached?
 

cPanelMichael

Administrator
Staff member
Apr 11, 2011
47,880
2,268
463
Hello :)

I recommend backing up the database via the command line with the mysqldump utility. EX:

Code:
mysqldump database_name > /path/to/database_name.sql
Thank you.