1. 程式人生 > >SSH 免密登入配置和遠端登入伺服器

SSH 免密登入配置和遠端登入伺服器

生成SSH私鑰和公鑰

ssh-keygen -t rsa

手動建立一個 authorized_keys檔案

touch ~/.ssh/authorized_keys

公鑰檔案內容複製到authorized_keys檔案裡面

cat  ~/.ssh/id_rsa.pub  >> ~/.ssh/authorized_keys

 

配置本地的ssh,修改 ~/.ssh/config 檔案:

Host yourserver
  HostName 192.168.11.22
  Port 22
  User username
  IdentityFile ~/.ssh/id_rsa

遠端免密登入伺服器 :

ssh yourserver