您好,登錄后才能下訂單哦!
這篇文章主要介紹“怎么在Linux下使用rsync”,在日常操作中,相信很多人在怎么在Linux下使用rsync問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么在Linux下使用rsync”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
對于各種組織和公司,數據對他們是最重要的,即使對于電子商務,數據也是同樣重要的。Rsync是一款通過網絡備份重要數據的工具/軟件。它同樣是一個在類Unix和Window系統上通過網絡在系統間同步文件夾和文件的網絡協議。Rsync可以復制或者顯示目錄并復制文件。Rsync默認監聽TCP 873端口,通過遠程shell如rsh和ssh復制文件。Rsync必須在遠程和本地系統上都安裝。
rsync的主要好處是:
速度:最初會在本地和遠程之間拷貝所有內容。下次,只會傳輸發生改變的塊或者字節。
安全:傳輸可以通過ssh協議加密數據。
低帶寬:rsync可以在兩端壓縮和解壓數據塊。
語法:
#rsysnc [options] source path destination path
[root@localhost /]# rsync -zvr /home/aloft/ /backuphomedirbuilding file list ... done.bash_logout.bash_profile.bashrcsent 472 bytes received 86 bytes 1116.00 bytes/sectotal size is 324 speedup is 0.58
上面的rsync命令使用了-z來啟用壓縮,-v是可視化,-r是遞歸。上面在本地的/home/aloft/和/backuphomedir之間同步。
[root@localhost /]# rsync -azvr /home/aloft/ /backuphomedirbuilding file list ... done./.bash_logout.bash_profile.bashrc sent 514 bytes received 92 bytes 1212.00 bytes/sectotal size is 324 speedup is 0.53
上面我們使用了-a選項,它保留了所有人和所屬組、時間戳、軟鏈接、權限,并以遞歸模式運行。
root@localhost /]# rsync -avz /home/aloft/ azmath@192.168.1.4:192.168.1.4:/share/rsysnctest/Password: building file list ... done./.bash_logout.bash_profile.bashrcsent 514 bytes received 92 bytes 1212.00 bytes/sectotal size is 324 speedup is 0.53
上面的命令允許你在本地和遠程機器之間同步。你可以看到,在同步文件到另一個系統時提示你輸入密碼。在做遠程同步時,你需要指定遠程系統的用戶名和IP或者主機名。
[root@localhost /]# rsync -avz azmath@192.168.1.4:192.168.1.4:/share/rsysnctest/ /home/aloft/Password:building file list ... done./.bash_logout.bash_profile.bashrcsent 514 bytes received 92 bytes 1212.00 bytes/sectotal size is 324 speedup is 0.53
上面的命令同步遠程文件到本地。
[root@localhost backuphomedir]# rsync -avzi /backuphomedir /home/aloft/building file list ... donecd+++++++ backuphomedir/>f+++++++ backuphomedir/.bash_logout>f+++++++ backuphomedir/.bash_profile>f+++++++ backuphomedir/.bashrc>f+++++++ backuphomedir/abc>f+++++++ backuphomedir/xyz sent 650 bytes received 136 bytes 1572.00 bytes/sectotal size is 324 speedup is 0.41
上面的命令幫助你找出源地址和目標地址之間文件或者目錄的不同。
rsync命令可以用來備份linux。
你可以在cron中使用rsync安排備份。
0 0 * * * /usr/local/sbin/bkpscript &> /dev/null
vi /usr/local/sbin/bkpscript rsync -avz -e ‘ssh -p2093′ /home/test/ root@192.168.1.150:/oracle/data/
到此,關于“怎么在Linux下使用rsync”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。