使ssh不用輸入密碼(轉)
使ssh不用輸入密碼(轉)[@more@]有些時候,我們在複製/移動檔案到另一臺機器時會用到scp,因為它比較安全。但如果每次都要輸入密碼,就比較煩了,尤其是在script裡。不過,ssh有另一種用金鑰對來驗證的方式。下面寫出我生成密匙對的過程,供大家參考。第一步:生成密匙對,我用的是rsa的金鑰。使用命令 "ssh-keygen -t rsa"程式碼:[user1@rh user1]$ ssh-keygen -t rsaGenerating public/private rsa key pair.Enter file in which to save the key (/home/user1/.ssh/id_rsa):Created directory '/home/user1/.ssh'.Enter passphrase (empty for no passphrase):Enter same passphrase again:Your identification has been saved in /home/user1/.ssh/id_rsa.Your public key has been saved in /home/user1/.ssh/id_rsa.pub.The key fingerprint is:e0:f0:3b:d3:0a:3d:da:42:01:6a:61:2f:6c:a0:c6:e7 user1@rh.test.com[user1@rh user1]$生成的過程中提示輸入金鑰對儲存位置,直接回車,接受預設值就行了。接著會提示輸入一個不同於你的password的密碼,直接回車,讓它空著。當然,也可以輸入一個。(我比較懶,不想每次都要輸入密碼。) 這樣,金鑰對就生成完了。其中公共金鑰儲存在 ~/.ssh/id_rsa.pub私有金鑰儲存在 ~/.ssh/id_rsa然後改一下 .ssh 目錄的許可權,使用命令 "chmod 755 ~/.ssh"程式碼:[user1@rh user1]$ chmod 755 ~/.ssh[user1@rh user1]$之後把這個金鑰對中的公共金鑰複製到你要訪問的機器上去,並儲存為~/.ssh/authorized_keys.程式碼:[user1@rh user1]$ scp ~/.ssh/id_rsa.pub rh1:/home/user1/.ssh/authorized_keysuser1@rh1's password:id_rsa.pub 100% 228 3.2MB/s 00:00[user1@rh user1]$之這樣就大功告成了。之後你再用ssh scp sftp 之類的訪問那臺機器時,就不用輸入密碼了,用在script上更是方便
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8225414/viewspace-945445/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 使ssh不用輸入密碼--摘密碼
- 使ssh不用輸入密碼(指令碼執行scp)密碼指令碼
- ssh訪問不用密碼密碼
- centos配置ssh免密碼登入後,仍提示輸入密碼CentOS密碼
- 按照標準建立SSH互信後,ssh仍需要輸入密碼密碼
- linux環境下ssh不輸入密碼Linux密碼
- [Linux] SSH配置了免密碼登入,登入時還要輸入密碼Linux密碼
- 兩機之間不用密碼傳輸檔案(轉)密碼
- linux 指令碼切換使用者不用輸入密碼Linux指令碼密碼
- Linux ssh 不需要輸入密碼的方法Linux密碼
- Ssh 信任關係建立後仍需要輸入密碼密碼
- Windows如何實現登陸系統不用輸入密碼Windows密碼
- [轉] ssh免密碼登入伺服器密碼伺服器
- ssh自動輸入密碼指令碼 切換目錄指令碼密碼指令碼
- SSH免密碼登入密碼
- ssh免認證配置後還是提示輸入密碼密碼
- InstallShield 隱藏密碼輸入 (轉)密碼
- linux A機器ssh登入B機器無需輸入密碼Linux密碼
- Win8.1直接進系統不用輸密碼登入的方法密碼
- ssh-copy-id登陸無需重複輸入密碼密碼
- win10帳號不用密碼登入的方法_win10怎麼設定不用輸密碼登陸系統Win10密碼
- input 密碼輸入框如何定位,並且輸入密碼呢?密碼
- 在linux上通過ssh直接登入到windows系統上,不用密碼LinuxWindows密碼
- Linux下的ssh認證,不用密碼登陸另一臺機器(轉)Linux密碼
- Linux SSH無密碼登入Linux密碼
- Mac 下 SSH 免密碼登入Mac密碼
- ssh公鑰免密碼登入密碼
- SSH認證免密碼登入密碼
- Flutter 密碼輸入框 驗證碼輸入框Flutter密碼
- Linux下Terminal的密碼輸入(轉)Linux密碼
- SSH 遠端登入「記住密碼」密碼
- [RHEL7] ssh免密碼登入密碼
- 配置雙機ssh免密碼登入密碼
- SSH無需密碼金鑰登入密碼
- 如何實現 SSH 無密碼登入密碼
- centos ssh免密碼秘鑰登入CentOS密碼
- 輸入密碼檢視flag密碼
- MAC OS X 10.8 操作遠端SSH伺服器 + 無密碼輸入使用SSH伺服器Mac伺服器密碼