溫馨提示×

溫馨提示×

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

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

Centos6.5 rsync同步備份

發(fā)布時間:2020-07-13 22:35:10 來源:網(wǎng)絡 閱讀:1035 作者:張斌66 欄目:安全技術

前言:本章主要講解實現(xiàn)快速、安全、高效的異地備份

實驗環(huán)境:服務端A 192.168.1.10   客戶端B 192.168.1.20


一,安裝rsync    yum  -y  install  rsync*

  新建配置文件 vi /etc/rsyncd.conf

uid = nobody

gid = nobody

use chroot = yes

address = 192.168.1.10

port 873

log file = /var/log/rsyncd.log

pid file = /var/run/rsyncd.pid

hosts allow = 192.168.1.0/24

[yy]

path = /var/www/html

comment = ccccccccccccc

read only = yes

dont compress = *.gz *.bz2

auth users =bin

secrets file = /etc/rsyncd_users.db

注意:如果采用匿名同步的方式,只要將其中的auth users和secrets file配置記錄去掉就可以了。


二,創(chuàng)建密碼認證文件  vi /etc/rsyncd_users.db


bin:123 

保存退出

修改密碼文件權限 chmod 600 /etc/rsyncd_users.db


三,啟動rsync  rsync --daemon   ps -ef | grep rsync  查看進程。

如若想要結束進程 kill 進程號  殺掉


1,使用rsync 本地備份 將文件  /etc/fastab   備份到 /tmp下

rsync  -rl  /etc/fastab  /tmp/


2,使用遠程備份  使用客戶端, 首先配置服務端防火墻  iptables  -I INPUT  -p tcp --dport 873 -j ACCEPT

service iptables save  保存防火墻


四,客戶端配置

1,創(chuàng)建測試目錄  mkdir  /rsync

2.同步rsync共享目錄

  # rsync bin@192.168.1.10::yy    //瀏覽共享

vim /root/rsync_pass                  //設定密碼文件

123                                //只需寫登錄用戶密碼,要與服務器端設置密碼一致

chmod 600 /root/rsync_pass            //不修改權限會報錯

rsync -az --password-file=/root/rsync_pass bin@192.168.1.10::yy /rsync  //同步

3.將rsync放入crontab計劃任務,每天同步一次

  #crontab -e 
0 5 * * * /usr/bin/rsync -a --password-file=/root/rsync_pass bin@192.168.1.10::yy  /rsync


向AI問一下細節(jié)

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

AI