码迷,mamicode.com
首页 > 其他好文 > 详细

ssh相关原理学习与常见错误总结

时间:2017-11-19 13:29:34      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:gen   use   时间间隔   cti   restart   文件   http   people   cal   

欢迎和大家交流技术相关问题:
邮箱: jiangxinnju@163.com
博客园地址: http://www.cnblogs.com/jiangxinnju
GitHub地址: https://github.com/jiangxincode
知乎地址: https://www.zhihu.com/people/jiangxinnju

SSH基本原理与运用

connect to host localhost port 22: Connection refused

参考:http://blog.csdn.net/jszhangyili/article/details/8881807

Agent admitted failure to sign using the key

ssh-keygen 产生出 id_rsa, id_rsa.pub, 已经都放到正确位置(.ssh), 但是联机时却出现下述讯息:Agent admitted failure to sign using the key。解决方法是在自己的机器上, 执行 ssh-add, 会出现: Identity added: /home/user/.ssh/id_rsa (/home/user/.ssh/id_rsa)

解决SSH超时断开连接问题

vim /etc/ssh/sshd_config

ClientAliveInterval # 指定服务器向客户端请求消息的时间间隔,默认是0表示不发送;可以改为60表示每分钟发送一次
ClientAliveCountMax # 表示服务器发出请求后客户端没有响应的次数达到一定值, 就自动断开

service sshd restart

sftp子系统申请已拒绝 请确保ssh连接的sftp子系统设置有效

vi /etc/ssh/sshd_config

# 取消下面这一行的注释
Subsystem       sftp /usr/libexec/openssh/sftp-server

/etc/init.d/sshd reload

too many authentication failures for root

使用xshell提示此问题,但可以通过Putty登录系统。
打开文件 /etc/ssh/sshd_config
修改 MaxAuthTries 这个参数的值,不建议修改太大。

ssh相关原理学习与常见错误总结

标签:gen   use   时间间隔   cti   restart   文件   http   people   cal   

原文地址:http://www.cnblogs.com/jiangxinnju/p/7859488.html

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