Jump to content

Mysql Backup


Iklekid

Recommended Posts

Hi I would like to make a back up of my websites myswl databse everyday at midnight! I have been told that I can do this using a crontab! I have crontabs on my server but I dont know what coding/command line on the cron tab to use! There is only one databse I would like to back up! Anyoen know how to do this?

 

Thanks in advance for any help!

 

Iklekid :D

Link to comment
https://forums.phpfreaks.com/topic/200-mysql-backup/
Share on other sites

You could use my Backup Utility:

 

http://www.phpfreaks.com/script/view/11.php

 

Alternatively, I would create a PHP script to do this.

 

Something like this:

 

[php:1:6356097178]<?php

 

$filename = \"mysqldb\".time().\".sql\";

 

passthru(\"mysqldump -u (username) -p(password) --opt (database_name) > /my/backup/directory/$filename\");

?>[/php:1:6356097178]

 

Then using my PHP CRON Tutorial, you can set it up on a CRON TAB.

 

http://www.phpfreaks.com/tutorials/28/0.php

 

Good luck.

Link to comment
https://forums.phpfreaks.com/topic/200-mysql-backup/#findComment-628
Share on other sites

<?php  

 

$filename = \\\"mysqldb\\\".time().\\\".sql\\\";  

 

passthru(\\\"mysqldump -u (username) -p(password) --opt (database_name) > /my/backup/directory/$filename\\\");  

?>

 

Do i replace the /my/backup/directory with my full server path to a folder I would like the backups put into??

 

And also do i jsut do a wget fucntion in the cron tab command?

 

Thanks

 

Iklekid

Link to comment
https://forums.phpfreaks.com/topic/200-mysql-backup/#findComment-630
Share on other sites

Hi I am using the script U have created but it dosent seem to want to work!

 

I have a cron tab set to wrok at midnight

 

the cron command is

 

php /home/dwog/public_html/*****/dbsender.php > dev/nul

I am asking for it to email me the fille, I have chmod the directory but still no luck.

 

Any ideas?

 

Thanks

Link to comment
https://forums.phpfreaks.com/topic/200-mysql-backup/#findComment-637
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.