scp在Linux主機(jī)之間復(fù)制不用輸入密碼
把你的本地主機(jī)用戶的ssh公匙文件復(fù)制到遠(yuǎn)程主機(jī)用戶的~/.ssh/authorized_keys文件中,假設(shè)本地主機(jī)linux(10.1.1.1),遠(yuǎn)程主機(jī)linux(10.1.1.2)
一,在linux100主機(jī)里的用戶
運(yùn)行
#ssh-keygen -t rsa
結(jié)果如下
Generating public/private rsa key pair.
Enter file in which to save the key (/home/.username/ssh/id_rsa):#回車(chē)
Enter passphrase (empty for no passphrase):#回車(chē)
Enter same passphrase again:#回車(chē)
Your identification has been saved in /home/.username /.ssh/id_rsa.
Your public key has been saved in /home/.username /.ssh/id_rsa.pub.
The key fingerprint is:
38:25:c1:4d:5d:d3:89:bb:46:67:bf:52:af:c3:17:0c username@localhost
Generating RSA keys:
Key generation complete.
會(huì)在用戶目錄~/.ssh/產(chǎn)生兩個(gè)文件,id_rsa,id_rsa.pub
二,把linux(10.1.1.1)主機(jī)上的id_rsa.pub文件拷貝到linux(10.1.1.2)主機(jī)的root用戶主目錄下的.ssh目錄下,并且改名為authorized_keys
即:
/root/.ssh/authorized_keys
這樣在linux100主機(jī)上使用scp命令復(fù)制文件到linux(10.1.1.2)上將不提示輸入密碼了,直接復(fù)制了。反之亦然!
三,復(fù)制文件或目錄命令:
復(fù)制文件:
(1)將本地文件拷貝到遠(yuǎn)程
scp 文件名 --user@10.1.1.2:遠(yuǎn)程路徑
(2)從遠(yuǎn)程將文件拷回本地
scp --user@10.1.1.2:文件名 本地路徑
復(fù)制目錄:
(1)將本地目錄拷貝到遠(yuǎn)程
scp -r 目錄名 --user@10.1.1.2:遠(yuǎn)程路徑
(2)從遠(yuǎn)程將目錄拷回本地
scp -r --user@10.1.1.2:目錄名 本地路徑。
【編輯推薦】