우분투 16.04를 실행 중입니다. 정상적으로 로그인하고 git clone을 실행하면 정상적으로 작동합니다.
wesley@localhost:~/Temp$ git clone ssh://[email protected]:5678/abc/myproject.git
Cloning into 'myproject'...
remote: Counting objects: ...
...
...
사용자 이름이나 비밀번호 또는 암호 문구를 입력하지 않고도 작동합니다. 내 SSH 구성은 다음과 같습니다 -
wesley@localhost:~/.ssh$ ls -alt
total 56
drwxr-xr-x 97 wesley wesley 4096 Jun 26 10:45 ..
-rw-r--r-- 1 wesley wesley 32718 Jun 25 11:44 known_hosts
drwx------ 2 wesley wesley 4096 Mar 28 11:09 .
-rw-rw-r-- 1 wesley wesley 963 Feb 9 2018 config
-rw------- 1 wesley wesley 3326 May 26 2017 id_rsa
-rw-r--r-- 1 wesley wesley 750 May 26 2017 id_rsa.pub
그러나 내 사용자를 사용하여 SSH를 통해 내 컴퓨터에 연결한다고 가정해 보겠습니다. 그런 다음 "git clone"이 나에게 "'/home/wesley/.ssh/id_rsa' 키의 비밀번호를 입력하세요"라고 요청했습니다.
wesley@localhost:~/Temp$ ssh wesley@localhost
wesley@localhost's password:
Welcome to Ubuntu 16.04.2 LTS (GNU/Linux 4.15.0-52-generic x86_64)
...
...
wesley@localhost:~$ cd Temp/
wesley@localhost:~/Temp$
wesley@localhost:~/Dump$ git clone ssh://[email protected]:5678/abc/myproject.git
Cloning into 'myproject'...
Enter passphrase for key '/home/wesley/.ssh/id_rsa':
SSH를 사용할 때 왜 다르게 동작합니까?