我使用SSH时出错了。我想解决它。你能帮我吗?
Welcome to Cloud Shell! Type "help" to get started.
...
$ gcloud --project "xxx" app instances ssh "xxx" --service "xxx" --version "xxx"
ssh: connect to host xx.xx.xx.xx port 22: Connection timed out
ERROR: (gcloud.app.instances.ssh) [/usr/bin/ssh] exited with return code [255].
我阅读了文档。 https://cloud.google.com/appengine/docs/flexible/nodejs/debugging-an-instance
我在云外壳上尝试过它并按下了SSH按钮。我使用Nodejs运行时。
我有所有者角色。
答案 0 :(得分:2)
由于权限或防火墙问题,通常会发生255错误。在您的情况下,您拥有所有者角色,我会尝试使用防火墙设置。创建一个允许IP范围为0.0.0.0/0的新范围,如steps here。
中所述