CentOs - 使用ssh key遠程登陸

環境:服務器

服務器端CentOs,本地OS Xssh

 

服務器端:spa

1. 安裝openssl使實現ssl協議code

2. 將本地的pub key加入信任列表blog

本地:ssl

  1. 生成pub keyopenssl

  2. 配置ssh別名使登錄更方便簡單class

 

步驟:email

服務器端:服務器端

$ yum install openssl

本地:

$ ssh-keygen -t rsa -C "your_email@example.com"
$ scp ~/.ssh/id_rsa.pub user@host:~/

服務器端:

$ mkdir .ssh 
$ cd .ssh 
$ touch authorized_keys
$ cat ~/id_rsa.pub >> ~/.ssh/authorized_keys
$ rm ~/id_rsa.pub

本地:

$ cd .ssh
$ vi config

    Host host_alias
      HostName host
      User user

 

隨後便可使用 

$ ssh host_alias

登錄遠程服務器啦。

相關文章
相關標籤/搜索