码迷,mamicode.com
首页 > 系统相关 > 详细

Linux远程登陆

时间:2017-06-09 17:23:34      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:user   linux   本地   忽略   rmi   app   更改   profile   文件内容   

1. 远程机器root账号(也可以是自定义的账号abc). 进入.ssh/authorized_keys 文件。没有的话在用户下新建一个相同目录的文件出来

2. 将本地登陆机的%userprofile%/.ssh/id_rsa.pub文件内容 (ssh-rsa 打头的) append到上面_keys文件中

3. 改文件权限 chmod 700 .ssh && chmod 644 .ssh/authorized_keys

4. 配置文件更改:
vi /etc/ssh/sshd_config 将 PermitRootLogin yes 开启。(如果第一步不是root可以忽略). 将 PubkeyAuthentication yes 开启

5。 重启sshd 服务。  

systemctl restart sshd

 

6. 远程机器登陆 用户名是第一步中的用户。 (root或者abc)

密钥匙 %userprofile%/.ssh/id_rsa: 私钥

 

技术分享

 

原理:远程机器上的公钥和本地的私钥配对后成功登陆

Linux远程登陆

标签:user   linux   本地   忽略   rmi   app   更改   profile   文件内容   

原文地址:http://www.cnblogs.com/ygshen/p/6972623.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!