SSh Agent admitted failure to sign using the key
1740 단어 agent
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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Js, 사용자 에이전트가 휴대폰에서 왔는지 확인텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.