91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

rsync同步文件

發布時間:2020-02-26 09:22:47 來源:網絡 閱讀:177 作者:vicxiang 欄目:系統運維
一.服務端(需要被同步文件的主機)
    1. 安裝rsync
            yum install -y rsync

    2. 配置,新增配置文件/etc/rsyncd.conf

[global]
uid = root
gid = root
use chroot = no
max connections = 10
list = yes
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsyncd.lock
log file = /var/log/rsyncd.log
hosts allow = 192.168.217.130 //白名單,允許同步的機器IP地址

[data] //數據目錄別名,同步時需要用到
path = /usr/local/src //別名對應的同步目錄
ignore errors
read only = yes
auth users = vicxiang //同步時用到的用戶名
secrets file = /etc/sery.pass //同步時用到的賬號密碼配置文件

    3. 配置,新增配置文件/etc/sery.pass

vicxiang:123456

         修改文件權限
         chmod 600 /etc/sery.pass

    4. 啟動rsync服務
       rsync --daemon --config=/etc/rsyncd.conf

    5. 防火墻設置,端口需要開放tcp 873

二.客戶端(文件同步到的目的機器)
    1. 配置密碼文件/etc/sery_client.pass

123456

            修改文件權限
            chmod 600 /etc/sery_client.pass
    2. 同步命令
            rsync -avr -P  vicxiang@192.168.217.128::data /usr/local/src/ --password-file=/etc/sery_client.pass
            其中vicxiang是同步時使用的用戶名;
            192.168.217.128是服務端IP;
            data是服務端配置的數據目錄別名;
             /usr/local/src/是同步到本機的目錄;
             /etc/sery_client.pass是配置密碼文件

三.配合crontab定時同步 
        編寫腳本rsync.sh

log_file=rsync.log

function sync(){
ip=${1}
path=${2}
t=date +%Y%m%d-%H%M%S
echo "${t} start to sync data from ${ip}..." >> ${log_file}
rsync -avr -P vicxiang@${ip}::data ${path} --password-file=/etc/sery_client.pass
echo "done" >> ${log_file}
}

sync ip path

向AI問一下細節

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

AI

九江市| 镇远县| 海兴县| 信宜市| 文山县| 南召县| 定兴县| 建德市| 汝州市| 郓城县| 沈阳市| 靖西县| 横山县| 沙河市| 万年县| 南安市| 福海县| 焉耆| 南召县| 张掖市| 清水河县| 当涂县| 崇明县| 青浦区| 嘉定区| 西丰县| 静乐县| 长寿区| 高密市| 昭平县| 侯马市| 增城市| 阳曲县| 惠东县| 宁蒗| 咸宁市| 阜城县| 砚山县| 兴山县| 石景山区| 惠州市|