欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

rsync遠(yuǎn)程同步(定期同步,實時同步實戰(zhàn)?。?創(chuàng)新互聯(lián)

本章結(jié)構(gòu)

1.rsync同步簡介
2.配置rsync備份源
3.rsync命令基本用法
4.rsync備份操作示例
5.rsync+inotify結(jié)合使用

成都創(chuàng)新互聯(lián)公司專注于景洪企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站建設(shè),電子商務(wù)商城網(wǎng)站建設(shè)。景洪網(wǎng)站建設(shè)公司,為景洪等地區(qū)提供建站服務(wù)。全流程定制網(wǎng)站建設(shè),專業(yè)設(shè)計,全程項目跟蹤,成都創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)

關(guān)于rsync .

一款快速增量備份工具

1.Remote Sync,遠(yuǎn)程同步
2.支持本地復(fù)制,或者與其他SSH、rsync主機同步
3.官方網(wǎng)站: http://rsync.samba.org

rsync遠(yuǎn)程同步(定期同步,實時同步實戰(zhàn)?。?></p><h4>配置rsync源服務(wù)器</h4><h5>rsync同步源:</h5><blockquote><p><strong>指備份操作的遠(yuǎn)程服務(wù)器,也稱為備份源</strong></p></blockquote><p><img src=

-m:持續(xù)進(jìn)行監(jiān)控

-r:遞歸監(jiān)控所有子對象

-q:簡化輸出信息

-e:指定要監(jiān)控哪些事件類型

Demo:

在client發(fā)起端中的操作:
[root@client html]# vim /etc/sysctl.conf
#需要在發(fā)起端開啟監(jiān)控
#在末行下插入以下內(nèi)容
fs.inotify.max_queued_events = 16384
fs.inotify.max_user_instances = 1024
fs.inotify.max_user_watches = 1048576
#添加完成后按Esc退出插入模式,輸入:wq保存退出

[root@client html]# sysctl -p       #刷新數(shù)據(jù)
fs.inotify.max_queued_events = 16384
fs.inotify.max_user_instances = 1024
fs.inotify.max_user_watches = 1048576

#加載inotofy管理工具
[root@client html]# mkdir /aaa
[root@client html]# mount.cifs //192.168.10.190/rpm /aaa
Password for root@//192.168.10.190/rpm:
[root@client html]# cd /aaa
[root@client aaa]# ls
Discuz_X3.4_SC_UTF8.zip           nginx-1.12.2.tar.gz
error.png                         php
extundelete-0.2.4.tar.bz2         redis-5.0.7.tar.gz
haproxy-1.5.19.tar.gz             ruby-2.4.1.tar.gz
httpd-2.4.29.tar.bz2              ruby.png
hzw.jpeg                          squid
inotify-tools-3.14.tar.gz         TC
[root@client aaa]# tar zxvf inotify-tools-3.14.tar.gz -C /opt/
[root@client opt]# cd /opt/inotify-tools-3.14/
[root@client inotify-tools-3.14]# ls
aclocal.m4    config.h.in   COPYING     libinotifytools  man      src
AUTHORS       config.sub    depcomp     ltmain.sh        missing
ChangeLog     configure     INSTALL     Makefile.am      NEWS
config.guess  configure.ac  install-sh  Makefile.in      README
[root@client inotify-tools-3.14]# yum install gcc gc-c++ make -y
[root@client inotify-tools-3.14]# ./configure
[root@client inotify-tools-3.14]# make && make install
[root@client inotify-tools-3.14]# inotifywait -mrq -e modify,create,move,delete /var/www/html/
#進(jìn)入監(jiān)控狀態(tài),監(jiān)控本地的html文件中的更新,創(chuàng)建,移動,刪除
此時無法進(jìn)行操作,我們需要再開一個遠(yuǎn)程連接以進(jìn)行操作
[root@client ~]# cd /var/www/html/
[root@client html]# ls
index.html
[root@client html]# touch abc       #創(chuàng)建新的abc文件
[root@client html]# rm -rf abc      #刪除abc
此時會在監(jiān)控的操作界面顯示同步到了此動作:
/var/www/html/ CREATE abc       #同步到創(chuàng)建動作
/var/www/html/ DELETE abc       #同步到刪除動作

我們可以使用:監(jiān)控觸發(fā)動作,然后調(diào)取rsync進(jìn)行同步

在監(jiān)控客戶先使用Ctrl+c停止監(jiān)控,然后創(chuàng)建腳本,操作如下:
[root@client inotify-tools-3.14]# cd /opt/
[root@client opt]# ls
inotify-tools-3.14  rh
[root@client opt]# vim inotify.sh
#!/bin/bash
INOTIFY_CMD="inotifywait -mrq -e modify,create,attrib,move,delete /var/www/html/"
RSYNC_CMD="rsync -azH --delete --password-file=/etc/server.pass /var/www/html/ backuper@192.168.18.148::wwwroot/"
$INOTIFY_CMD | while read DIRECTORY EVEVT FILE
do
        if [ $(pgrep rsync | wc -l) -le 0 ] ; then
            $RSYNC_CMD
        fi
done
#添加完成后按Esc退出插入模式,輸入:wq保存退出
[root@client opt]# chmod +x inotify.sh
[root@client opt]# ls -l /var/www/
總用量 0
drwxr-xr-x. 2 root root  6 8月   8 19:42 cgi-bin
drwxrwxrwx. 2 root root 24 12月 16 10:00 html
此時還需要注意到CentOS 7-4 rsync服務(wù)器端的配置文件:
[root@rsyncd www]# vim /etc/rsyncd.conf
read only = no      #關(guān)閉只讀功能
#修改完成后按Esc退出插入模式,輸入:wq保存退出

執(zhí)行腳本
[root@rsyncd ~]# netstat -ntap | grep rsync
tcp        0      0 192.168.18.148:873      0.0.0.0:*          LISTEN      2768/rsync
[root@rsyncd ~]# kill -9 2768       #殺死該進(jìn)程
[root@rsyncd ~]# rsync --daemon     #啟動rsync
[root@rsyncd ~]# failed to create pid file /var/run/rsyncd.pid: File exists
#提示有pid文件存在
[root@rsyncd ~]# cd /var/run/
[root@rsyncd run]# ls
abrt          dhclient-ens33.pid  lock            radvd           syslogd.pid
alsactl.pid   dmeventd-client     log             rpcbind         systemd
atd.pid       dmeventd-server     lsm             rpcbind.sock    tmpfiles.d
auditd.pid    faillock            lvm             rsyncd.pid      tuned
avahi-daemon  firewalld           lvmetad.pid     samba           udev
certmonger    gdm                 mdadm           sepermit        udisks2
chrony        gssproxy.pid        media           setrans         user
chronyd.pid   gssproxy.sock       mount           setroubleshoot  utmp
console       httpd               named           sm-notify.pid   vmware
crond.pid     initramfs           netreport       spice-vdagentd  xtables.lock
cron.reboot   ksmtune.pid         NetworkManager  sshd.pid
cups          libvirt             plymouth        sudo
dbus          libvirtd.pid        ppp             sysconfig
[root@rsyncd run]# cat rsyncd.pid
2768
[root@rsyncd run]# rm -rf rsyncd.pid        #刪除此pid文件
[root@rsyncd run]# rsync --daemon       #再次啟動
[root@rsyncd run]# netstat -ntap | grep rsync       #此時會生成新的pid號
tcp        0      0 192.168.18.148:873      0.0.0.0:*         LISTEN      5416/rsync
[root@rsyncd run]# cat rsyncd.pid
5416
#此時正常運轉(zhuǎn)rsync
在CentOS 7-5 client端開啟監(jiān)控:
[root@client opt]# ./inotify.sh
#此時監(jiān)控開啟
再打開另一個7-5的遠(yuǎn)程連接開始寫內(nèi)容:
[root@client html]# echo "this is test" > test.txt
此時文件同步到CentOS 7-4 rsync服務(wù)器端,我們可以進(jìn)行查詢:
[root@rsyncd run]# cd /var/www/html/
[root@rsyncd html]# ls
index.html  test.txt
[root@rsyncd html]# cat test.txt
this is test

以上就實現(xiàn)了實時同步!

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。

本文題目:rsync遠(yuǎn)程同步(定期同步,實時同步實戰(zhàn)?。?創(chuàng)新互聯(lián)
當(dāng)前路徑:http://aaarwkj.com/article8/jseop.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供搜索引擎優(yōu)化網(wǎng)站設(shè)計公司、網(wǎng)站維護(hù)、定制開發(fā)、手機網(wǎng)站建設(shè)、定制網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

商城網(wǎng)站建設(shè)
日日添夜夜躁欧美一区二区| 成人av久久一区二区三区| 自偷自拍亚洲综合精品| 亚洲精品一区av在线观看| 粉嫩国产精品一区二区| 午夜在线免费观看小视频| 亚洲男人成人性天堂网站| 亚洲国产日韩精品久久| 国产一区二区高清在线| 美女av在线免费观看| 白色发布会在线观看免费| 精品色妇熟妇丰满人妻5| 日本人妻内射一区二区| 亚洲精品一区二区播放| 日本韩国欧美一区在线| 日日爱欧美精品亚洲成| 夫妻性生活免费看视频| 国产一区二区三区午夜视频| 日本久久久视频在线观看| 国产传媒在线视频观看| 超薄丝袜美腿一二三区在线播放 | 日韩精品中文字幕国产精品| 国产三级精品av在线| 人妻久久一区二区三区精品99| 午夜未满十八禁止观看| 在线看黄视频网站永久免费| 在线不卡日本v二区到六区| 国产亚洲欧美日韩看国产| 91国产香蕉在线观看| 日本在线观看免费高清| 九九在线精品视频免费| 成年人正常性生活频率| 国产原创av剧情在线观看| 国产精品日韩经典中文字幕| av剧情在线观看免费| 日韩精品在线观看不卡| 香蕉欧美在线视频播放| 白白色最新福利在线视频观看| 亚洲欧美日韩在线第三页| 久久精品国产av极品| 91无人区一区二区三乱码|