CentOS 配置无密码登录的实现
CentOS配置无密码登录
配置sshd服务在服务器上修改/etc/ssh/sshd_config:
#禁止root登录 PermitRootLoginno #指定可以登录的用户 AllowUsersbobalice StrictModesyes #关闭密码验证 PasswordAuthenticationno #打开RSA验证相关设置 RSAAuthenticationyes PubkeyAuthenticationyes AuthorizedKeysFile.ssh/authorized_keys #关闭GSSAPI验证 GSSAPIAuthenticationno
重启sshd服务
生成rsa-keypair切换到允许ssh登录的用户账户执行如下执行如下命令:
#生成key-pair ssh-keygen cp~/.ssh/id_rsa.pub~/.ssh/authorized_keys sudochmod600~/.ssh/authorized_keys sudochmod700~/.ssh restorecon-R-v~/.ssh
复制刚刚生成的id_rsa文件到本地,一般命名为:server.pem
ssh-iserver.pemusername@server
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!