我正在使用 gcloud App Engine并想使用 Google Cloud Shell 从我的私有 git 服务器克隆一个 git 存储库,但是,由于某种原因,我遇到了连接超时。
这就是 ssh 给我的:
$ ssh -vvv myuser@myserver.mydomain.com -p 2121
OpenSSH_7.4p1 Debian-10+deb9u4, OpenSSL 1.0.2l 25 May 2017
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: resolving "myserver.mydomain.com" port 2121
debug2: ssh_connect_direct: needpriv 0
debug1: Connecting to myserver.mydomain.com [158.120.145.109] port 2121.
debug1: connect to address 158.120.145.109 port 2121: Connection timed out
ssh: connect to host myserver.mydomain.com port 2121: Connection timed out
*主机、域、IP 和端口因明显原因而更改
需要考虑的事项:
- 我的 git 服务器已启动并正在运行,我可以使用相同的命令从任何其他机器连接到它
- 我的 git 服务器日志没有显示来自 gcloud 的任何传入连接
- 除了 App Engine,我没有使用任何东西,也不想配置 Compute Engine
有没有人发现同样的问题并想分享解决方案?