".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)'); } }) })
[阿里云](/#)轻量级应用服务器是基于云服务器ECS的计算、存储、网络资源,并结合阿里云公共镜像和云市场镜像,能提供高效的应用部署方案。轻量应用服务器操作简单便捷,能让您快速上手部署简单的应用。本教程将介绍下阿里云轻量级应用服务器远程连接的主要步骤。
如果您是正在了解云计算服务的入门用户;或是需要在服务器中部署简单应用的个人开发者、中小企业,那么推荐您选择阿里云轻量应用服务器。
点击查看:[阿里云产品优惠链接](https://go.idcspy.com/www.aliyun.com/)
阿里云轻量级应用服务器支持Windows、Linux等操作系统,这里主要介绍下在Windows环境中远程连接Linux服务器的方法步骤。您可以通过第三方客户端工具(如[PuTTY](/#))远程连接Linux服务器。
阿里云轻量级应用服务器开通后,您可以在控制台查看到该服务器登录账号和公网IP地址等信息,远程连接将会使用到这些信息。运行PuTTY工具,然后配置远程连接Linux服务器的信息,例如:
* Host Name(or IP address):填写轻量应用服务器的主机名或公网IP地址。
* Port:默认是22。
* Connection type:选中SSH。
* Saved Sessions:输入一个便于识别的名称,如test,然后单击Save即可保存会话,下次登录时无需输入公网IP地址等信息。
![](https://www.idcspy.com/wp-content/uploads/2023/08/pz1.png)
服务器信息配置好后,点击Open按钮,您将会看到命令行窗口。
* 在命令行中输入Linux服务器的登录密码,然后按Enter键。
* 在命令行中输入Linux服务器的系统用户root,然后按Enter键。
温馨提示:在输入密码时,系统为了最大限度的保证数据安全,命令行将不做任何回显。您只需要输入正确的密码信息,然后按Enter键即可。
阿里云轻量级应用服务器远程连接成功后,您将会看到类似下面的界面,然后可以在命令行中输入相关命令来管理服务器。
![](https://www.idcspy.com/wp-content/uploads/2023/08/pz2.png)"
松果号 作者:松果号原创文章,如若转载,请注明出处:https://www.6480i.com/archives/102860.html