Backup

Posts tagged with

Tape Backup

To make a tape backup, give the following two commands on the terminal of the Felicity Linux server. The first one rewinds the tape to the beginning and the second one makes the actual backup. Just cut and paste the following two lines, press enter, and leave it for the machine to do the backup. mt …

Read more →

Backup script

I use rsync for all my backup scripts. It is fast and easy. #!/bin/bash LOGFILE=/var/log/backup.log EMAILID=Alfred Tuinman@xyz.com NASDISK=192.168.x.x:/volume1/backup/myserver # the NAS station ARGMNTS="-rptgoDLKve ssh --delete-excluded --safe-links …

Read more →

MySQL backup and restore

To backup a single database: mysqldump --user=root --password=password mydb > mydb.sql Yes it is no typo, there is no space between the -p and the password! You may like to add this to the my.cfg file in etc to avoid [mysqldump] events ignore-table=mysql.events If you didn’t use the …

Read more →