ERROR: (gcloud.compute.ssh) [/usr/bin/ssh] exited with return code [255]

前端 未结 15 933
渐次进展
渐次进展 2020-12-08 07:14

I kept getting kicked out of my compute engine instance after a few seconds of idle with the indicated error (255). I used \'gcloud compute ssh\' to log in. I am using t

15条回答
  •  爱一瞬间的悲伤
    2020-12-08 07:52

    Try switching to a different Internet connection


    So, I was getting the same error but in my case I was not able to log in to the instance at all.

    (base) girish@girish:~$ gcloud beta compute ssh --zone "asia-east1-b" "fp-1" --project "fp-public"
    ssh: connect to host 12.345.678.90 port 22: Resource temporarily unavailable
    ERROR: (gcloud.beta.compute.ssh) [/usr/bin/ssh] exited with return code [255].
    

    (base) girish@girish:~$ gcloud beta compute ssh  --ssh-flag='-vvv' --zone "asia-east1-b" "fp-1" --project "fp-public"
    OpenSSH_7.6p1 Ubuntu-4ubuntu0.3, OpenSSL 1.0.2n  7 Dec 2017
    debug1: Reading configuration data /etc/ssh/ssh_config
    debug1: /etc/ssh/ssh_config line 19: Applying options for *
    debug2: resolving "12.345.678.90" port 22
    debug2: ssh_connect_direct: needpriv 0
    debug1: Connecting to 12.345.678.90 [12.345.678.90] port 22.
    [debug1: connect to address 12.345.678.90 port 22: Resource temporarily unavailable
    ssh: connect to host 12.345.678.903 port 22: Resource temporarily unavailable
    ERROR: (gcloud.beta.compute.ssh) [/usr/bin/ssh] exited with return code [255].
    

    What worked for me: I tried reinstalling lots of things and re-initializing various config and then landed on a thread which suggest to change the Internet network you are using and it worked!!

提交回复
热议问题