SSh Agent admitted failure to sign using the key

1740 단어 agent
현재 2 대의 기계
1. 서버 192.168.1.112
2. 개인기 192.168.1.110
110을 비밀번호 없이 ssh를 통해 112에 로그인하려면
단계
1. 키 만들기
miao@u32-192-168-1-110:~/.ssh$ ssh-keygen -t rsa

Generating public/private rsa key pair.
Enter passphrase (empty for no passphrase): ( )
Enter same passphrase again: ( )
Your identification has been saved in /home/miao/.ssh/id_rsa.
Your public key has been saved in /home/miao/.ssh/id_rsa.pub.

2. 서버에 비밀 복제
miao@u32-192-168-1-110:~/.ssh$ scp id_rsa.pub [email protected]:/home/miao/.ssh/192.168.1.110
[email protected]'s password: 
id_rsa.pub                                                                   100%  404     0.4KB/s   00:00    
miao@u32-192-168-1-110:~/.ssh$ 

3. 192.168.112의 신뢰 영역에 공밀 추가

miao@debian-192-168-1-112:~/.ssh$ cat 192.168.1.110 >> authorized_keys
miao@debian-192-168-1-112:~/.ssh$ 

주: 2, 3 두 걸음은 명령 ssh-copy-id로 한 걸음에 도착할 수 있습니다
miao@ubuntu-192-168-1-110:~/.ssh$ ssh-copy-id [email protected]
Password:
Now try logging into the machine, with "ssh '[email protected]'", and check in:

  .ssh/authorized_keys

to make sure we haven't added extra keys that you weren't expecting.

4. ssh-agent 시작
ssh 192.168.112가 Agent admitted failure to sign using the key ps - Af | grep agent로 돌아가면 ssh-agent가 실행 중인지 안 하는지 확인합니다.
miao@u32-192-168-1-110:~/.ssh$ ssh-agent

5, id_ 추가rsa에서 ssh-agent까지
miao@u32-192-168-1-110:~/.ssh$ ssh-add id_rsa

좋은 웹페이지 즐겨찾기