Skip to content

Tag Archives: home

rsync all your home and mysql db to new server.

14-Nov-09

Some time you may want to backup your home directory and mysql databases to a new server, we can do that using rsync script. The below script when run from your new server will, rsync all your home dir to your new server.
#!/bin/bash
#by-admin@serversignature.com
#Old Server IP
IP=192.168.0.1
#Scrit is run from the new server to move the [...]