有兩台linux機器
node1(172.16.160.92)
node2(172.16.160.91)
先在node1(172.16.160.92)這台機器操作
生產金鑰
ssh-keygen -t rsa -p "";
回車把id_rsa.pub追加到授權的key裡面去。
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
修改授權key的許可權
chmod 600 ~/.ssh/authorized_keys
測試登陸本機:ssh localhost
在node2(172.16.160.91)中重複上面的操作
生產金鑰
ssh-keygen -t rsa -p "";
回車把id_rsa.pub追加到授權的key裡面去。
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
修改授權key的許可權
chmod 600 ~/.ssh/authorized_keys
把檔案複製到node2(172.16.160.92)
scp ~/.ssh/id_rsa.pub [email protected]:/home/cuishizhou/.ssh/authorized_keys
然後node1就可以訪問node2了
ssh 192.16.160.91
成功!!!
ssh 免密登陸
摘要 在本地生成公鑰私鑰對,並將公鑰上傳至 server 端實現免密登陸。1.使用 ssh keygen 生成金鑰 ssh keygen t rsa f filename在生成金鑰對時,會要求輸入 passphrase generating public private rsa key pair.e...
SSH免密登陸
建立秘鑰 ssh keygen 傳送秘鑰 ssh copy id ip 登陸ssh ip 在進行ssh登陸的時候依然要輸入密碼的解決方案 是被登入機器的檔案許可權問題 使用者許可權 chmod 700 home hadoop ssh資料夾許可權 chmod 700 home hadoop ssh a...
SSH免密登陸
參考 ubuntu14預設是安裝了ssh 伺服器安裝ssh apt get install ssh 驗證是否安裝成功 ssh v 預設安裝後會自動啟動,為了確保ssh啟動,使用命令檢視 ps e grep ssh 只要確保sshd是在執行的,1 ssh 127.0.0.1一定能成功,2 同時wind...