從一個伺服器複製檔案到另一個伺服器,或者從本地到遠端複製是 Linux 管理員的日常任務之一。
我覺得不會有人不同意,因為無論在哪裡這都是你的日常操作之一。有很多辦法都能處理這個任務,我們試著加以概括。你可以挑一個喜歡的方法。當然,看看其他命令也能在別的地方幫到你。
我已經在自己的環境下測試過所有的命令和指令碼了,因此你可以直接用到日常工作當中。
通常大家都傾向 scp
,因為它是檔案複製的原生命令之一。但本文所列出的其它命令也很好用,建議你嘗試一下。
檔案複製可以輕易地用以下四種方法。
scp
:在網路上的兩個主機之間複製檔案,它使用 ssh
做檔案傳輸,並使用相同的認證方式,具有相同的安全性。rsync
:是一個既快速又出眾的多功能檔案複製工具。它能本地複製、通過遠端 shell 在其它主機之間複製,或者與遠端的 rsync
守護行程 之間複製。pscp
:是一個並行複製檔案到多個主機上的程式。它提供了諸多特性,例如為 scp
設定免密傳輸,儲存輸出到檔案,以及超時控制。prsync
:也是一個並行複製檔案到多個主機上的程式。它也提供了諸多特性,例如為 ssh
設定免密傳輸,儲存輸出到 檔案,以及超時控制。scp
命令可以讓我們從本地系統複製檔案/資料夾到遠端系統上。
我會把 output.txt
檔案從本地系統複製到 2g.CentOS.com
遠端系統的 /opt/backup
資料夾下。
# scp output.txt [email protected]:/opt/backupoutput.txt 100% 2468 2.4KB/s 00:00
從本地系統複製兩個檔案 output.txt
和 passwd-up.sh
到遠端系統 2g.CentOs.com
的 /opt/backup
資料夾下。
# scp output.txt passwd-up.sh [email protected]:/opt/backupoutput.txt 100% 2468 2.4KB/s 00:00passwd-up.sh 100% 877 0.9KB/s 00:00
從本地系統複製 shell-script
資料夾到遠端系統 2g.CentOs.com
的 /opt/back
資料夾下。
這會連同shell-script
資料夾下所有的檔案一同複製到/opt/back
下。
# scp -r /home/daygeek/2g/shell-script/ root@:/opt/backup/output.txt 100% 2468 2.4KB/s 00:00ovh.sh 100% 76 0.1KB/s 00:00passwd-up.sh 100% 877 0.9KB/s 00:00passwd-up1.sh 100% 7 0.0KB/s 00:00server-list.txt 100% 23 0.0KB/s 00:00
如果你想複製同一個檔案到多個遠端伺服器上,那就需要建立一個如下面那樣的小 shell 指令碼。
並且,需要將伺服器新增進 server-list.txt
檔案。確保新增成功後,每個伺服器應當單獨一行。
最終,你想要的指令碼就像下面這樣:
# file-copy.sh#!/bin/shfor server in `more server-list.txt`do scp /home/daygeek/2g/shell-script/output.txt root@$server:/opt/backupdone
完成之後,給 file-copy.sh
檔案設定可執行許可權。
# chmod +x file-copy.sh
最後執行指令碼完成複製。
# ./file-copy.shoutput.txt 100% 2468 2.4KB/s 00:00output.txt 100% 2468 2.4KB/s 00:00
使用下面的指令碼可以複製多個檔案到多個遠端伺服器上。
# file-copy.sh#!/bin/shfor server in `more server-list.txt`do scp /home/daygeek/2g/shell-script/output.txt passwd-up.sh root@$server:/opt/backupdone
下面結果顯示所有的兩個檔案都複製到兩個伺服器上。
# ./file-cp.shoutput.txt 100% 2468 2.4KB/s 00:00passwd-up.sh 100% 877 0.9KB/s 00:00output.txt 100% 2468 2.4KB/s 00:00passwd-up.sh 100% 877 0.9KB/s 00:00
使用下面的指令碼遞回地複製資料夾到多個遠端伺服器上。
# file-copy.sh#!/bin/shfor server in `more server-list.txt`do scp -r /home/daygeek/2g/shell-script/ root@$server:/opt/backupdone
上述指令碼的輸出。
# ./file-cp.shoutput.txt 100% 2468 2.4KB/s 00:00ovh.sh 100% 76 0.1KB/s 00:00passwd-up.sh 100% 877 0.9KB/s 00:00passwd-up1.sh 100% 7 0.0KB/s 00:00server-list.txt 100% 23 0.0KB/s 00:00output.txt 100% 2468 2.4KB/s 00:00ovh.sh 100% 76 0.1KB/s 00:00passwd-up.sh 100% 877 0.9KB/s 00:00passwd-up1.sh 100% 7 0.0KB/s 00:00server-list.txt 100% 23 0.0KB/s 00:00
pscp
命令可以直接讓我們複製檔案到多個遠端伺服器上。
使用下面的 pscp
命令複製單個檔案到遠端伺服器。
# pscp.pssh -H 2g.CentOS.com /home/daygeek/2g/shell-script/output.txt /opt/backup[1] 18:46:11 [SUCCESS] 2g.CentOS.com
使用下面的 pscp
命令複製多個檔案到遠端伺服器。
# pscp.pssh -H 2g.CentOS.com /home/daygeek/2g/shell-script/output.txt ovh.sh /opt/backup[1] 18:47:48 [SUCCESS] 2g.CentOS.com
使用下面的 pscp
命令遞回地複製整個資料夾到遠端伺服器。
# pscp.pssh -H 2g.CentOS.com -r /home/daygeek/2g/shell-script/ /opt/backup[1] 18:48:46 [SUCCESS] 2g.CentOS.com
使用下面的 pscp
命令使用下面的命令複製單個檔案到多個遠端伺服器。
# pscp.pssh -h server-list.txt /home/daygeek/2g/shell-script/output.txt /opt/backup[1] 18:49:48 [SUCCESS] 2g.CentOS.com[2] 18:49:48 [SUCCESS] 2g.Debian.com
使用下面的 pscp
命令複製多個檔案到多個遠端伺服器。
# pscp.pssh -h server-list.txt /home/daygeek/2g/shell-script/output.txt passwd-up.sh /opt/backup[1] 18:50:30 [SUCCESS] 2g.Debian.com[2] 18:50:30 [SUCCESS] 2g.CentOS.com
使用下面的命令遞回地複製資料夾到多個遠端伺服器。
# pscp.pssh -h server-list.txt -r /home/daygeek/2g/shell-script/ /opt/backup[1] 18:51:31 [SUCCESS] 2g.Debian.com[2] 18:51:31 [SUCCESS] 2g.CentOS.com
rsync
是一個即快速又出眾的多功能檔案複製工具。它能本地複製、通過遠端 shell 在其它主機之間複製,或者在遠端 rsync
守護行程 之間複製。
使用下面的 rsync
命令複製單個檔案到遠端伺服器。
# rsync -avz /home/daygeek/2g/shell-script/output.txt [email protected]:/opt/backupsending incremental file listoutput.txtsent 598 bytes received 31 bytes 1258.00 bytes/sectotal size is 2468 speedup is 3.92
使用下面的 rsync
命令複製多個檔案到遠端伺服器。
# rsync -avz /home/daygeek/2g/shell-script/output.txt passwd-up.sh [email protected]:/opt/backupsending incremental file listoutput.txtpasswd-up.shsent 737 bytes received 50 bytes 1574.00 bytes/sectotal size is 2537 speedup is 3.22
使用下面的 rsync
命令通過 ssh
複製單個檔案到遠端伺服器。
# rsync -avzhe ssh /home/daygeek/2g/shell-script/output.txt [email protected]:/opt/backupsending incremental file listoutput.txtsent 598 bytes received 31 bytes 419.33 bytes/sectotal size is 2.47K speedup is 3.92
使用下面的 rsync
命令通過 ssh
遞回地複製資料夾到遠端伺服器。這種方式只複製檔案不包括資料夾。
# rsync -avzhe ssh /home/daygeek/2g/shell-script/ [email protected]:/opt/backupsending incremental file list./output.txtovh.shpasswd-up.shpasswd-up1.shserver-list.txtsent 3.85K bytes received 281 bytes 8.26K bytes/sectotal size is 9.12K speedup is 2.21
如果你想複製同一個檔案到多個遠端伺服器上,那也需要建立一個如下面那樣的小 shell 指令碼。
# file-copy.sh#!/bin/shfor server in `more server-list.txt`do rsync -avzhe ssh /home/daygeek/2g/shell-script/ [email protected]$server:/opt/backupdone
上面指令碼的輸出。
# ./file-copy.shsending incremental file list./output.txtovh.shpasswd-up.shpasswd-up1.shserver-list.txtsent 3.86K bytes received 281 bytes 8.28K bytes/sectotal size is 9.13K speedup is 2.21sending incremental file list./output.txtovh.shpasswd-up.shpasswd-up1.shserver-list.txtsent 3.86K bytes received 281 bytes 2.76K bytes/sectotal size is 9.13K speedup is 2.21
在上面兩個 shell 指令碼中,我們需要事先指定好檔案和資料夾的路徑,這兒我做了些小修改,讓指令碼可以接收檔案或資料夾作為輸入引數。當你每天需要多次執行複製時,這將會非常有用。
# file-copy.sh#!/bin/shfor server in `more server-list.txt`doscp -r $1 [email protected]$server:/opt/backupdone
輸入檔名並執行指令碼。
# ./file-copy.sh output1.txtoutput1.txt 100% 3558 3.5KB/s 00:00output1.txt 100% 3558 3.5KB/s 00:00
如果你想使用非標準埠,使用下面的 shell 指令碼複製檔案或資料夾。
如果你使用了非標準埠,確保像下面 scp
命令那樣指定好了埠號。
# file-copy-scp.sh#!/bin/shfor server in `more server-list.txt`doscp -P 2222 -r $1 [email protected]$server:/opt/backupdone
執行指令碼,輸入檔名。
# ./file-copy.sh ovh.shovh.sh 100% 3558 3.5KB/s 00:00ovh.sh 100% 3558 3.5KB/s 00:00
如果你使用了非標準埠,確保像下面 rsync
命令那樣指定好了埠號。
# file-copy-rsync.sh#!/bin/shfor server in `more server-list.txt`dorsync -avzhe 'ssh -p 2222' $1 [email protected]$server:/opt/backupdone
執行指令碼,輸入檔名。
# ./file-copy-rsync.sh passwd-up.shsending incremental file listpasswd-up.shsent 238 bytes received 35 bytes 26.00 bytes/sectotal size is 159 speedup is 0.58sending incremental file listpasswd-up.shsent 238 bytes received 35 bytes 26.00 bytes/sectotal size is 159 speedup is 0.58