ローカル ホストから GCP Cloud Shell に SSH 接続しようとすると、次のエラーが発生します。
$ gcloud cloud-shell ssh --authorize-session
sign_and_send_pubkey: signing failed for RSA "/home/kossak/.ssh/google_compute_engine" from agent: agent refused operation
<USER>@<IP>: Permission denied (publickey).
ERROR: (gcloud.cloud-shell.ssh) [/usr/bin/ssh] exited with return code [255].
デバッグオプション付き:
$ gcloud cloud-shell ssh --authorize-session --verbosity debug
DEBUG: Running [gcloud.cloud-shell.ssh] with arguments: [--authorize-session: "True", --verbosity: "debug"]
DEBUG: Starting new HTTPS connection (1): cloudshell.googleapis.com:443
DEBUG: https://cloudshell.googleapis.com:443 "GET /v1/users/me/environments/default?alt=json HTTP/1.1" 200 None
DEBUG: Starting new HTTPS connection (1): cloudshell.googleapis.com:443
DEBUG: https://cloudshell.googleapis.com:443 "POST /v1/users/me/environments/default:authorize?alt=json HTTP/1.1" 200 None
DEBUG: Running command [/usr/bin/ssh -t -p 6000 -i /home/kossak/.ssh/google_compute_engine -o StrictHostKeyChecking=no <USER>@<IP> -- DEVSHELL_PROJECT_ID=<PROJECT_ID> bash -l].
DEBUG: Executing command: ['/usr/bin/ssh', '-t', '-p', '6000', '-i', '/home/kossak/.ssh/google_compute_engine', '-o', 'StrictHostKeyChecking=no', '<USER>@<IP>', '--', 'DEVSHELL_PROJECT_ID=<PROJECT_ID>', 'bash -l']
sign_and_send_pubkey: signing failed for RSA "/home/kossak/.ssh/google_compute_engine" from agent: agent refused operation
<USER>@<IP>: Permission denied (publickey).
DEBUG: (gcloud.cloud-shell.ssh) [/usr/bin/ssh] exited with return code [255].
Traceback (most recent call last):
File "/home/kossak/apps/google-cloud-sdk/lib/googlecloudsdk/calliope/cli.py", line 987, in Execute
resources = calliope_command.Run(cli=self, args=args)
File "/home/kossak/apps/google-cloud-sdk/lib/googlecloudsdk/calliope/backend.py", line 807, in Run
resources = command_instance.Run(args)
File "/home/kossak/apps/google-cloud-sdk/lib/surface/cloud_shell/ssh.py", line 114, in Run
command.Run(connection_info.ssh_env)
File "/home/kossak/apps/google-cloud-sdk/lib/googlecloudsdk/command_lib/util/ssh/ssh.py", line 1541, in Run
raise CommandError(args[0], return_code=status)
googlecloudsdk.command_lib.util.ssh.ssh.CommandError: [/usr/bin/ssh] exited with return code [255].
ERROR: (gcloud.cloud-shell.ssh) [/usr/bin/ssh] exited with return code [255].
すでに試したこと:
- ローカルマシンで ssh-agent を再起動する
- ローカルマシンとクラウドシェルを再起動する
gcloud compute config-ssh
(ローカルマシンとクラウドシェルの両方で)返されたのはWARNING: No host aliases were added to your SSH configs because instances have no public IP.
- GCP コンピューティング => メタデータ => SSH キーからすべての SSH キーを削除する
- 名前を変更し
~/.ssh
て再度接続を試みる ssh-add -l
両方のキーを返します: rsa (gcp から) と ed25519 (手動で作成)- 権限は
/home/kossak/.ssh
700です - 権限は
/home/kossak/.ssh/google_compute_engine
600です - SSHキーを使用してローカルネットワーク内の別のSSHサーバーに接続する - 正常に動作します
- sshキー認証でgitコマンドを実行する(例
git remote update
) - 正常に動作する
私が使う:
- Linux マンジャロ
- Google クラウド SDK 410.0.0
別のホストからクラウドシェルにログインできます問題はおそらく私のコンピュータにあります。何が問題なのか、またはデバッグする方法を知っている人はいますか?
アドバイスをいただければ幸いです。