需要安裝xinetd服務yum install xinetd -y #rhelapt-get install xinetd -y #ubunt..."/>
溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

數據備份之–rsync

發(fā)布時間:2020-05-27 16:06:21 來源:網絡 閱讀:391 作者:caidui 欄目:安全技術

軟件版本:rsync-3.0.9
服務器端配置
>需要安裝xinetd服務

yum install xinetd -y #rhel
apt-get install xinetd -y #ubuntu

>安裝

wget http://rsync.samba.org/ftp/rsync/rsync-3.0.9.tar.gzwget http://rsync.samba.org/ftp/rsync/rsync-patches-3.0.9.tar.gztar zxvf rsync-3.0.9.tar.gztar zxvf rsync-patches-3.0.9.tar.gzcd rsync-3.0.9
./configuremake && make install

1.創(chuàng)建配置文件

vim /etc/rsyncd.conf
; port=873uid=rootgid=root
max connections=10log file=/var/log/rsyncd.log
pid file=/var/run/rsyncd.pid
lock file=/var/run/rsyncd.lock
secrets file=/etc/rsyncd.passwd
; hosts allow=192.168.11.0/27; hosts deny=192.168.11.0/255.255.255.224timeout=600 [backdir]comment= for client backpath=/home/backdir/read only = no
;exclude=test;exclude from=/path/to/file;include from=/path/to/fileauth users=caide.me[share]comment= backup share filepath=/home/share/read only = yesauth users=caide.me

2.創(chuàng)建密碼文件(/etc/rsyncd.passwd)

echo "caide.me:caide.me.passwd" > /etc/rsyncd.passwdchmod 600 /etc/rsyncd.passwd

3.創(chuàng)建xinetd監(jiān)聽任務(/etc/xinetd.d/xinetd_rsync)

vim /etc/xinetd.d/xinetd_rsync
# default: off# description: The rsync server is a good addition to an ftp server, as it \#       allows crc checksumming etc.service rsync{
        disable = no
        socket_type     = stream        wait            = no
        user            = root
        server          = /usr/local/bin/rsync
        server_args     = --daemon
        log_on_failure  += USERID}
service xinetd restart

–>如有需要,防火墻需開啟tcp協(xié)議873端口<--

客戶端配置
>安裝

wget http://rsync.samba.org/ftp/rsync/rsync-3.0.9.tar.gzwget http://rsync.samba.org/ftp/rsync/rsync-patches-3.0.9.tar.gztar zxvf rsync-3.0.9.tar.gztar zxvf rsync-patches-3.0.9.tar.gzcd rsync-3.0.9
./configuremake && make install

備份-還原文件shell腳本

#!/bin/sh# 按照IP進行備份NICS=`arp -a | awk '{print $7}'`NIC=`echo $NICS |awk '{print $1}'`SERVERIP=`ifconfig $NIC | awk '/inet / {print $2}' | cut -f2 -d ":"`# directory to backupBDIR=/path/to/backdir# excludes file - this contains a wildcard pattern per line of files to excludeEXCLUDES=no_rsync.txt# the name of the backup machineBSERVER=back_server_ipif [ "$SERVERIP" = "$BSERVER" ]thenexitfi# your password on the backup serverUSERNAME=caide.meexport RSYNC_PASSWORD=caide.me.passwd########################################################################MODULE=backdirOPTS="--force --ignore-errors --delete-excluded --exclude-from=$EXCLUDES--delete -avz"export PATH=$PATH:/bin:/usr/bin:/usr/local/bin# now the actual transferrsync $OPTS $BDIR $USERNAME@$BSERVER::$MODULE/$SERVERIP  #備份# rsync $OPTS $USERNAME@$BSERVER::$MODULE/$SERVERIP $BDIR #還原


向AI問一下細節(jié)
推薦閱讀:
  1. rsync復制
  2. rsync命令

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI