linux ssh互信配置

2021-07-23 16:24:13 字數 660 閱讀 3127

環境

node1:192.168.3.20

node2:192.168.3.21

用到的命令1.在兩台機器上生成各自的key檔案

[[email protected]]#ssh-keygen -t rsa       #下面一直按回車就好

[[email protected]]#ssh-keygen -t rsa

2.用ssh-copy-id 把公鑰複製到遠端主機上,命令也要
[[email protected]]#ssh-copy-id -i  .ssh/id_rsa.pub [email protected]

[[email protected]]#ssh-copy-id -i .ssh/id_rsa.pub [email protected]

注:如果不是預設的埠,可以這樣寫

ssh-copy-id -i ~/.ssh/id_rsa.pub 「-p 2022 [email protected]

現在就可以直接登入了

[[email protected]]#ssh [email protected],試試吧

linux ssh互信配置

目錄 1.簡單介紹 2.配置過程 一.簡單介紹 一般使用scp遠端拷貝操作時,需要輸入目標伺服器的使用者名稱和密碼,這個時候可以做linux伺服器之間ssh互信配置,這樣在多個linux伺服器之間做操作時就可以免密登陸。ssh互信配置的原理簡單來說,就是各自伺服器存放了目標主機的證書,當執行登陸時,...

Linux ssh互信指令碼

使用互信指令碼的時候,需要敲回車,但是shell指令碼無法滿足,所以需要用到expect指令碼 rpm qa grep expect 如果沒有的話,直接用yum安裝即可 yum install expect y 我這裡以oracle使用者為例 在oracle的家目錄中,home oracle 下 生...

linux ssh互信配置及問題解決

配置免密登入 1.執行命令 ssh keygen t rsa p 回車後會在 ssh 下生成兩個檔案 id rsa 和 id rsa.pub,這兩個檔案是成對出現的 2.cat ssh id rsa.pub ssh authorized keys scp ssh authorized keys 中內...