- 使用VNC或服务器账号密码连接Linux实例。
打开终端,输入以下指令,查看是否已经生成SSH秘钥。
ls -al ~/.ssh# Lists the files in your .ssh directory, if they exist
如果有文件id_rsa.pub 或 id_dsa.pub 说明已经创建过SSH密钥,导入即可。
生成新的SSH密钥。
在服务器上制作密钥对。首先用密码登录到你打算使用密钥登录的账户,然后执行以下命令:
[root@host ~]$ ssh-keygen <== 建立密钥对Generating public/private rsa key pair.Enter file in which to save the key (/root/.ssh/id_rsa): <== 按 EnterCreated directory '/root/.ssh'.Enter passphrase (empty for no passphrase): <== 输入密钥锁码,或直接按 Enter 留空Enter same passphrase again: <== 再输入一遍密钥锁码Your identification has been saved in /root/.ssh/id_rsa. <== 私钥Your public key has been saved in /root/.ssh/id_rsa.pub. <== 公钥The key fingerprint is: xxxxxxx
创建完成,安装公钥。
输入以下命令,在服务器上安装公钥:
[root@host ~]$ cd .ssh[root@host .ssh]$ cat id_rsa.pub >> authorized_keys
如此便完成了公钥的安装。为了确保连接成功,请保证以下文件权限正确:
[root@host .ssh]$ chmod 600 authorized_keys[root@host .ssh]$ chmod 700 ~/.ssh
设置SSH,打开密钥登录。
编辑 /etc/ssh/sshd_config 文件,进行如下设置:
RSAAuthentication yesPubkeyAuthentication yes
另外,请留意 root 用户能否通过 SSH 登录:
PermitRootLogin yes
当你完成全部设置,并以密钥方式登录成功后,再禁用密码登录:
PasswordAuthentication no
最后,重启 SSH 服务:
[root@host .ssh]$ service sshd restart