1、將本地文件拷貝到遠端
創(chuàng)新互聯(lián)是一家朝氣蓬勃的網(wǎng)站建設公司。公司專注于為企業(yè)提供信息化建設解決方案。從事網(wǎng)站開發(fā),網(wǎng)站制作,網(wǎng)站設計,網(wǎng)站模板,微信公眾號開發(fā),軟件開發(fā),小程序設計,十多年建站對銅雕雕塑等多個方面,擁有多年的網(wǎng)站推廣經(jīng)驗。
scp 文件 用戶@ 主機名:遠端目錄 scp 123.txt root@192.168.1.1:/
2、將遠端目錄拷貝到本地
scp -r 用戶@主機名:遠端目錄 本地目錄 scp -r root@192.168.1.2:/456.txt ~
3、SCP無需輸入密碼傳輸文件
在Linux環(huán)境下,兩臺主機之間傳輸文件一般使用scp命令,通常用scp命令通過ssh獲取對方linux主機文件的時候都需要輸入密碼確認。
不過通過建立信任關系,可以實現(xiàn)不輸入密碼。
1)在其中一臺主機上執(zhí)行如下命令來生成配對密鑰:
ssh-keygen -t rsa
按照提示操作,注意,不要輸入passphrase。提示信息如下
Generating public/private rsa key pair. Enter file in which to save the key (/root/.ssh/id_rsa): Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /root/.ssh/id_rsa. Your public key has been saved in /root/.ssh/id_rsa.pub. The key fingerprint is: 63:61:d2:ce:5f:e8:14:5c:56:2c:7b:08:71:41:a2:cc root@localhost.localdomain
2.)將 .ssh 目錄中的 id_rsa.pub 文件復制到另外一臺主機的 ~/.ssh/ 目錄中,并改名為 authorized_keys。
scp .ssh/id_rsa.pub 主機名:/root/.ssh/authorized_keys