大约一周前,我们服务器所在的大楼短暂断电,导致服务器重启。重启后,Atlassian 显然决定升级 BitBucket,它不再工作。我无法连接到 Web 客户端(我们使用端口 7990),也无法通过git
(我们使用端口 7999)进行连接,但我可以ssh
使用默认设置(我们使用端口 42043)进行连接。
以下是 .ssh/config 中的相关部分:
Host atlas
user dci
HostName <redacted>
Port 42043
AddressFamily inet
GSSAPIAuthentication no
以下是 ssh 的结果:
▶ ssh atlas
Welcome to Ubuntu 14.04.5 LTS (GNU/Linux 3.13.0-88-generic x86_64)
* Documentation: https://help.ubuntu.com/
…
以下是 git 的结果:
▶ git pull
ssh: connect to host <redacted> port 7999: Connection refused
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
当尝试连接到时https://<redacted>:7990/projects
,我得到:
This site can’t be reached atlas.dependablecomputing.com refused to connect.
Try:
Checking the connection
Checking the proxy and the firewall
ERR_CONNECTION_REFUSED
请注意,这些错误在服务器重启后立即出现,之前一切都正常。我们有一个脚本,之后必须手动运行,它最初给出了错误消息(请参阅更多内容),但在执行几个chmod
命令、升级 Ubuntu 14.04 和安装 Java 8(并在每次事件后重新启动/重新运行重新启动后脚本)后,所有这些错误消息都消失了。然而,主要问题(无法针对服务器运行 git)仍然存在。
有什么建议么?