Results 1 to 9 of 9
Threaded View
-
27th Nov 2011, 11:27 AM #1OPMember
How to: remotely backup your DB (bash script)
hello mateys,
i've put up some basic shell commands (with the help of our beloved lord google the mighty) that will allow you to backup your DBs locally, gzipped it and then send it thru ftp to safe place you've picked
Code:#!/bin/bash mysqldump -uYOURUSERNAME -pYOURPASS -hlocalhost YOURDBNAME > /your/path/backup-`date +%d%m%y`.sql tar -zcvf /your/path/zippedbackup-`date +%d%m%y`.tgz /your/path/*.sql cd /your/path HOST='YOURFTPHOST' USER='YOURFTPUSERNAME' PASSWD='YOURFTPPASS' ftp -n -v $HOST << EOT binary user $USER $PASSWD prompt put zippedbackup-* bye EOT rm -rf /your/path/* exit 0
also don't forget to chmod it first to 755 so that the script can be executed
hope that helps.masterbator Reviewed by masterbator on . How to: remotely backup your DB (bash script) hello mateys, i've put up some basic shell commands (with the help of our beloved lord google the mighty) that will allow you to backup your DBs locally, gzipped it and then send it thru ftp to safe place you've picked #!/bin/bash mysqldump -uYOURUSERNAME -pYOURPASS -hlocalhost YOURDBNAME > /your/path/backup-`date +%d%m%y`.sql tar -zcvf /your/path/zippedbackup-`date +%d%m%y`.tgz /your/path/*.sql cd /your/path HOST='YOURFTPHOST' Rating: 5
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
bash script mass download from links in text file
By Mutikasa in forum Tutorials and GuidesReplies: 1Last Post: 9th May 2012, 04:20 PM -
OpenVPN For VZ VPS Bash Script. "CentOS"
By dotvps in forum Tutorials and GuidesReplies: 4Last Post: 28th Feb 2012, 01:07 PM -
mass upload bash script (good for Megaupload)
By Mutikasa in forum Tutorials and GuidesReplies: 7Last Post: 13th Jan 2012, 12:54 PM -
ssh/bash script
By t3od0r in forum Technical Help Desk SupportReplies: 0Last Post: 6th Oct 2010, 06:41 PM -
Need A Bash Script
By orbofdarkness in forum Technical Help Desk SupportReplies: 14Last Post: 8th Feb 2010, 08:02 PM
themaPoster - post to forums and...
Version 5.38 released. Open older version (or...