1
ssh -i /users/yuyu/.ssh/123/yuyu.pem [email protected]
登入後需要輸入密碼
123
45
// 新增pom到ssh中
ssh-add -k /users/yuyu/.ssh/123/yuyu.pem
// 提示輸入密碼, 成功
// 下一步直接ssh登入即可
123
4567
cd /users/yuyu/.ssh/item2
vi ac_test
// 編輯檔案, 如下方**塊
// 設定許可權
chmod 666
// 下一步直接ssh登入即可
expect /users/yuyu/.ssh/item2/ac_test
123
4567
891011
set port 22
set host 10.0.0.1
set user dev
set password 123
spawn ssh -p $port $user@$host
expect
"*password:*"
}interact
123
4567
// 安裝
brew install
// 檢視路徑
where sshpass
安裝完成後使用如下指令登入
/usr/local/bin/sshpass -p passwrod ssh username@ip
item2實現ssh的免密登入
編寫expect指令碼 1 新建指令碼 指令碼位置沒有明確要求 touch ssh info.sh2 指令碼內容 usr bin expect set timeout 30 spawn ssh p lindex ar 0 lindex ar 1 lindex ar 2 expect password...
item2自動連線SSH
本文主要介紹如何用item2實現免密登入。1 編輯命令指令碼 2 配置item2 1 編輯命令指令碼 切換資料夾 cd 你要儲存的資料夾下 建立檔案 touch centosautologinssh 複製 vim centosautologinssh 複製 2.1.3 配置centosautolog...
SSH免密登入
a為本地主機 b為遠端主機 生成公鑰私鑰對 ssh keygen t rsa登入遠端機器 ssh root 然後輸入密碼 將.ssh的許可權設為700 mkdir ssh 如果資料夾已存在,跳過 chmod 700 ssh將本地生成的rsa公鑰複製到遠端機器 scp ssh id rsa.pub r...