首页 > 服务器 > Web服务器 > 正文

CentOS 配置无密码登录的实现

2024-09-01 13:51:57
字体:
来源:转载
供稿:网友

CentOS 配置无密码登录

配置sshd服务 在服务器上修改/etc/ssh/sshd_config:

<!-- lang: shell -->

#禁止root登录PermitRootLogin no#指定可以登录的用户AllowUsers bob aliceStrictModes yes#关闭密码验证PasswordAuthentication no#打开RSA验证相关设置RSAAuthentication yesPubkeyAuthentication yesAuthorizedKeysFile   .ssh/authorized_keys#关闭 GSSAPI验证GSSAPIAuthentication no

重启sshd服务

生成rsa-keypair 切换到允许ssh登录的用户账户执行如下执行如下命令:

<!-- lang: shell -->

#生成key-pairssh-keygen cp ~/.ssh/id_rsa.pub ~/.ssh/authorized_keyssudo chmod 600 ~/.ssh/authorized_keyssudo chmod 700 ~/.sshrestorecon -R -v ~/.ssh

复制刚刚生成的id_rsa文件到本地,一般命名为:server.pem

ssh -i server.pem username@server

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表