Too many authentication failures for root (code 2)解决办法
服务器可能由于装了一下安全软件导致有时用ssh远程工具登陆不了,提示太多认证失败for root。
解决办法。换个地址登录服务器,修改ssh的配置文件,具体操作如下:
[root@localhost ~]#vim /etc/ssh/sshd_config
找到这个选项:MaxAuthTries=1
123
[root@localhost ~]#vim /etc/ss...
ssh 无密码访问
一. 两台服务器
test1 192.168.0.57
test2 192.168.0.52
二. ssh-keygen 生成密钥
在test1上生成密钥
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
sh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your...