RAKsmart美国VPS连接VNC错误:等待超时如何解决?

".extra-menu { background-color: #f3f3f3; padding: 20px; } .extra-menu .extra-menu-h { height: 36px; } .extra-menu .extra-menu-h h3 { display:inline-block; } .extra-menu ul a{ text-decoration: none; } .extra-menu .menu-child { text-indent: 4em; } .extra-menu .menu-child:before { left: 4em; } .extra-menu .extra-menu-h h3 { line-height: 36px; } .collapse-toggle { float: right; cursor: pointer; user-select: none; display: inline-flex; align-items: center; font-size: 14px; } .collapse-toggle img { width: 30%; transform: rotate(180deg); } .collapse-content { margin-bottom: 0px !important; margin-top: 20px !important; overflow: hidden; max-height: 0; transition: max-height 0.3s ease-out; } .collapse-content.expanded { max-height: 1000px; /\* 设置一个足够大的值,确保内容可以完全展开 \*/ } .ph-id { position: relative; top: -90px; } jQuery(document).ready(function( $ ) { $('.collapse-toggle').on('click',function(){ var content = document.querySelector('.collapse-content'); content.classList.toggle('expanded'); if (content.classList.contains('expanded')) { $(this).find('div').text('收起'); $(this).find('img').css('transform','rotate(180deg)'); } else { $(this).find('div').text('展开'); $(this).find('img').css('transform','rotate(0deg)'); } }) })

VNC (Virtual Network Console),即虚拟网络控制台,它是一款基于UNIX和Linux操作系统的远程控制软件。您在租用的[RAKsmart](/#)美国VPS主机上安装VNC软件后,可实现远程连接计算机,但有时会出现等待主机响应超时错误,那么遇到这种问题该怎么解决呢?下面一起来了解下。

![](https://www.idcspy.com/wp-content/uploads/2021/05/time.jpg)

步骤1:先确保您的RAKsmart[美国VPS主机](/#)是启动的并处于联机状态。您可以从运行以下命令进行检查。

> ping \[IP Address\]

假设您不过滤ICMP数据包,则应该可以通过ping服务器IP地址来接收到有效的ICMP ping响应。

步骤2:检查防火墙上是否已打开VNC的默认端口,即5900。您可以在计算机的命令提示符下从运行以下命令的本地系统中进行检查。

> telnet \[IP Address\] 5900

如果无法使用上述命令建立连接,则服务器中的端口已关闭,或者服务器上的源IP地址可能被阻止。

步骤3:使用以下命令打开端口5900并保存设置。

> sudo /sbin/iptables -I INPUT 1 -p TCP –dport 5900 -j ACCEPT
>
> sudo iptables save

步骤4:最后您可以尝试通过在服务器的SSH命令行提示符下键入以下命令来重新启动服务器上的VNC服务器:

> sudo service vncserver restart

相关阅读:《[RAKsmart Linux VPS连接VNC桌面化教程](/#)》"

松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/105982.html

(0)
松果号松果号
上一篇 4小时前
下一篇 4小时前

推荐阅读

发表回复

登录后才能评论