当 ssh 挂起时如何连接

当 ssh 挂起时如何连接

我正在尝试通过 ssh 连接到远程计算机,但是在寻找身份文件时它挂起了:

[username@local .ssh]$ ssh -v remote uname
OpenSSH_5.3p1, OpenSSL 1.0.0-fips 29 Mar 2010
debug1: Reading configuration data /home/username/.ssh/config
debug1: Applying options for *
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug1: Connecting to remote [192.168.3.36] port 22.
debug1: Connection established.
debug1: identity file /home/username/.ssh/identity type -1
debug1: identity file /home/username/.ssh/id_rsa type -1
debug1: identity file /home/username/.ssh/id_dsa type -1

我可以正常 ping 机器,而且它显然在 sshd 服务运行的情况下正常工作……我只是不知道如何登录它。事实上,我只想重新启动它。那就没问题了。问题是:它跨越了海洋(我在美国,而机器在欧洲)。我同时运行了数百个 java 线程,显然这对主机来说太多了。

我怎样才能回去?

答案1

您将必须找到一些不涉及的方法ssh

打电话给可以亲自重启的人。希望那里有支持人员?

服务器通常具有操作系统之外的某种管理界面,允许通过网络重新启动,这在发生这种情况时很有用。

相关内容