Perform Basic MySQL Database Operations
Assuming you are a superuser, create a new database:
Import data:
Dump the db:
Backup!
Here’s a script called db_backup (make the file executable with chmod a+x filename):
# vars
path=/backup
suffix=$(date +%m%d%Y)
filename=db_backup_$suffix.tar.gz
db_user=root
db_pass=
# dumb the dbs
mysqldump -u$db_user -p$db_pass –opt asterisk > $path/asterisk.sql
mysqldump -u$db_user -p$db_pass –opt gallery2 > $path/gallery2.sql
mysqldump -u$db_user -p$db_pass –opt wordpress > $path/wordpress.sql
# create an archive, cleanup
tar -P -zcf $path/$filename $path/*.sql
rm -f $path/*.sql
exit 0
Edit the crontab with crontab -e and add the following line (which runs every day at 11 pm and logs to the file specified):
Alternately you can backup all databases with one command:
Or backup the database files directly from /var/lib/mysql/. You don’t have to be a guru to administer your databases (though some knowledge of relational databases & SQL definitely helps). PHPMyAdmin is a handy tool that you should setup if you haven’t already.
About Benjamin Perove
Benjamin has been associated with computer technology starting from a very early age, and has contributed to the success of many businesses and enterprises since 2001. He loves to crush pow at Keystone, play acoustic guitar, climb rocks, and ascend mountains on his road bike. Benjamin is an Avalanche fan and currently resides in Boulder, Colorado.

Comments(2)



Learn MySQL…
It is very simple to use this function through the SQL tab in phpMyAdmin (or any other direct interface with mysql). Say you want to change the name of the table from \”tbl_ oldtable\” to \”tbl_ newtable\” then this would be the code:…