Я пытаюсь подключиться к виртуальной машине в Google Cloud. Я создал открытый ключ для использования по SSH и добавил его в экземпляр облака. у меня есть SSH_AUTH_SOCK
установить в файл, используемый gpg-agent
.
~/.gnupg/gpg-agent.conf
default-cache-ttl 600
max-cache-ttl 7200
enable-ssh-support
pinentry-program /usr/local/MacGPG2/libexec/pinentry-mac.app/Contents/MacOS/pinentry-mac
~/.zprofile
...
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
gpgconf --launch gpg-agent
Вроде все работает нормально:
% ssh-add -L
ssh-rsa AAAAB3NzaC1yc2EA... (none)
Однако когда я пытаюсь подключиться к виртуальной машине ...
debug1: Offering public key: (none) RSA SHA256:[REDACTED] agent
debug3: send packet: type 50
debug2: we sent a publickey packet, wait for reply
debug3: receive packet: type 51
debug1: Authentications that can continue: publickey
debug1: Trying private key: /Users/alice/.ssh/id_rsa
debug3: no such identity: /Users/alice/.ssh/id_rsa: No such file or directory
debug1: Trying private key: /Users/alice/.ssh/id_dsa
debug3: no such identity: /Users/alice/.ssh/id_dsa: No such file or directory
debug1: Trying private key: /Users/alice/.ssh/id_ecdsa
debug3: no such identity: /Users/alice/.ssh/id_ecdsa: No such file or directory
debug1: Trying private key: /Users/alice/.ssh/id_ed25519
debug3: no such identity: /Users/alice/.ssh/id_ed25519: No such file or directory
debug1: Trying private key: /Users/alice/.ssh/id_xmss
debug3: no such identity: /Users/alice/.ssh/id_xmss: No such file or directory
debug2: we did not send a packet, disable method
debug1: No more authentication methods to try.
alice@1.2.3.4: Permission denied (publickey).
%
Итак, очевидно, мне нужно было добавить открытый ключ в ~/.ssh/authorized_keys
на стороне сервера. Первоначально я добавил ключ через веб-консоль управления в разделе с надписью "Ключи SSH... "Я до сих пор не знаю, почему это не сработало.