This article mainly introduces the Linux batch backup server configuration file and directory methods, the need for friends can refer to the next
Function:
1. Only in the backup machine, the remote server only need to allow the backup machine with root through the key login;
2. Configure which servers to back up on the backup machine, add or subtract the array in need_backup_servers;
3. Configure what files on the server need to be backed up on the backup machine, add or subtract the array in Need_backup_detail, and if you need to back up a file defined in the Need_backup_detail array on a server, the nonexistent files are automatically skipped, For example, there is no my.cnf on the Web server and no impact;
4. If the new backup generated on the server is the same as the previous backup content, only the older backups are retained. Because the server's configuration file is not constantly changed;
5. By modifying the definition keep_backup_num as a variable, you can determine how many copies of the most recent backups are left on the remote server, and I define 10. Keep Backups of all remote servers on the backup machine. Because the configuration files are small, do not worry about disk space consumption.
The following techniques have been used:
1. Get remote server IP, if a server does not have public network IP, use the server's "hostname _ip." Backup Date _ backup time. tar.gz
2. Through circulation, judgment, the elements in the array of the re-assignment;
Please note the version number and update log after downloading.
Copy Code code as follows:
#!/bin/bash
##################################################################
# backup_config_files_of_remote_servers
# Env:centos 5.5 x86_64
# Created by Hernan on 2011-04-06
# Copyright __chengyongxu.com__. All rights reserved.
#
# version:1.4.6
# Revision History
##################################################################
# local TMP Dir in this Script
this_script_tmp=/tmp/do_at_remote_server.sh
This_script_tmp_name= ' echo $THIS _script_tmp|awk-f/' {print $NF} '
# local Backup Dir
Local_backup_dir=/tmp/idc_config_backup
# Need Backup Servers and Files List
Remote_server_tmp_dir=/tmp/backup_server_config_files_tmp
Need_backup_servers= (
10.0.0.52
Server_a_ip
Server_b_ip
Server_c_ip
Server_d_ip
Chengyongxu.com
)
Need_backup_detail= (
/etc/hosts
/etc/httpd/conf/*.conf
/etc/httpd/conf.d/*.conf
/etc/keepalived/keepalived.conf
/etc/my.cnf
/etc/postfix
/root/bin/*sh
/usr/local/nagios/etc/nagios.cfg
/usr/local/nagios/etc/objects/*cfg
/usr/local/nginx/conf
/usr/local/php/etc/php.ini
/usr/local/php/etc/php-fpm.conf
/usr/local/php-fcgi/etc/php.ini
/usr/local/php-fcgi/etc/php-fpm.conf
/usr/local/sphinx/etc/*.conf
/var/spool/cron
)
keep_backup_num=10
Ssh_port=22
Ssh_user=root
##################################################################
#
# Global functions
#
##################################################################
#========= !!!! Warning! Don ' t edit next function!!!! =========#
# Create Script Tmp File
Create_script () {
Cat << EOF > $THIS _script_tmp
#!/bin/bash
Need_backup_detail= (${need_backup_detail[*]})
# How many nums the backup needed
baknum= $KEEP _backup_num
remote_server_tmp_dir= $REMOTE _server_tmp_dir
server_ip= '/sbin/ifconfig|grep ' inet addr "|cut-f 2-d": "|cut-f 1-d" "|grep-ve" ^10.| ^127|^172.16|^192.168 "'
Backup_time= ' Date +%y%m%d_%h%m '
##################################################################
#
# Compress Need_backup_detail
#
##################################################################
# If IPV4 Private address only, use Hostname.ip
If [-Z $SERVER _ip]
Then
Server_ip= ' hostname ' _ '/sbin/ifconfig|grep ' inet addr "|cut-f 2-d": "|cut-f 1-d" "|grep-ve" ^127 "|head-n 1 '
Fi
# Create Tpm dir
if [!-D $REMOTE _server_tmp_dir]
Then
Mkdir-p $REMOTE _server_tmp_dir
Fi
# Compress
For file in ${need_backup_detail[*]}
Todo
# When you want to backup the file exists,
# Assign to an element of the new array
While [-e $file]
Todo
need_backup_detail_exists[$num]= $file
Let num++
Break
Done
Done
Tar zcfpp $REMOTE _server_tmp_dir/$SERVER _ip. $BACKUP _time.tar.gz ${need_backup_detail_exists[*]}
##################################################################
#
# If files are the Same,keep one only
#
##################################################################
new_backup_archive_content= ' tar TVF $REMOTE _server_tmp_dir/$SERVER _ip. $BACKUP _time.tar.gz '
for backfile in ' ls $REMOTE _server_tmp_dir | grep tar.gz |grep-v $SERVER _ip. $BACKUP _time '
do
old_backup_archive_content= ' tar tvf $REMOTE _server_ tmp_dir/$backfile '
while [' $NEW _backup_archive_content ' = ' $OLD _backup_archive_content ']
do
rm-rvf $REMOTE _server_tmp_dir/$SERVER _ip.$ BACKUP_TIME.tar.gz 1 >> $REMOTE _server_tmp_dir/delete_new.log
break
Done
Done
##################################################################
#
# Keep Some Backup Files newest
#
##################################################################
count=0
for name in ' ls $BAKPATH/| Grep-e ' [0-9]{6,6} ' | Sort-r '
do
count=$ ((count+1))
If [$count-gt $BAKNUM]; then
echo-n Cleaning old backup: $name ... "
if [$BAKPATH/$name" = "/"]; Then
echo "No rm-rf/!"
exit 1
fi
rm-rf $BAKPATH/$name
echo "done."
Else
echo "Keeping old backup: $name"
fi
Done
Exit
EOF
}
Copy_script_to_remote () {
For server in ${need_backup_servers[*]}
Todo
Ssh-p $SSH _port-tt $SSH _user@ $server << EOT
Mkdir-p $REMOTE _server_tmp_dir
Exit
EOT
Scp-p $SSH _port $THIS _script_tmp $SSH _user@ $server: $REMOTE _server_tmp_dir/
Done
}
Backup_on_remote_then_copy_back () {
For server in ${need_backup_servers[*]}
Todo
Ssh-p $SSH _port-tt $SSH _user@ $server << EOP
chmod o+x $REMOTE _server_tmp_dir/$THIS _script_tmp_name
SH $REMOTE _server_tmp_dir/$THIS _script_tmp_name
Rm-f $REMOTE _server_tmp_dir/$THIS _script_tmp_name
Exit
EOP
Rsync-e "Ssh-p $SSH _port" $SSH _user@ $server: $REMOTE _server_tmp_dir/*tar.gz $LOCAL _backup_dir/
Done
}
##################################################################
#
# Main
#
################### ###############################################
#
Create_script
Copy_script_to_remote
Backup_On_ Remote_then_copy_back
Rm-rf $THIS _script_tmp