AWS announces preview of AWS Interconnect - multicloud
AWS announces AWS Interconnect – multicloud (preview), providing simple, resilient, high-speed private connections to other cloud service providers. AWS Interconnect - multicloud is easy to configure and provides high-speed, resilient connectivity with dedicated bandwidth, enabling customers to interconnect AWS networking services such as AWS Transit Gateway, AWS Cloud WAN, and Amazon VPC to other cloud service providers with ease.
为什么我不能使用 WorkSpaces 客户端访问我的 Windows WorkSpace?
我想解决我在尝试使用 Amazon WorkSpaces 客户端登录我的 WorkSpace 时收到的错误。
解决方法
“We couldn't launch your WorkSpace”错误
在您进行身份验证后,WorkSpaces 客户端可能会在启动屏幕上显示以下错误:
“Unknown error Occurred.We couldn't launch your WorkSpace.Please try again.If you need help, contact your administrator”。
当 WorkSpaces 客户端可通过端口 443 进行身份验证但无法通过 TCP 端口建立连接时,将会出现此错误。客户端设备可能不符合网络要求。
对于 PCoIP WorkSpaces,WorkSpaces 客户端必须连接到 PCoIP WorkSpace 的 TCP 端口 4172。对于 DCV(以前称为 WSP)WorkSpace,客户端必须连接到 TCP 端口 4195。
如果客户端的网络运行状况检查失败,请在 WorkSpaces 客户端 3.0 或更高版本中查看失败的运行状况检查。必须在客户端中选择 Network(网络)图标。
最佳做法是每天多次在 Connection Health Check(连接运行状况检查)页面上检查数据是否有更改。您还可以查看运行客户端的计算机的运行状况检查。启动 WorkSpaces 客户端,然后选择 Network(网络)图标。
**注意:**可能出现访问问题的原因是客户端防火墙或代理阻止通过端口 4172 或 4195(TCP 和 UDP)进行访问。如果运行状况检查失败,请检查您的本地防火墙设置。
如果客户端的网络运行状况检查通过,请检查您的 WorkSpace 网络配置。例如,Windows 防火墙规则或防病毒检查可能会阻止管理接口上的 TCP 端口 4172 或 TCP 4195。使用远程桌面协议 (RDP) 连接到 WorkSpace。然后,验证 WorkSpace 是否允许访问所需端口。
启动会话后出现“Disconnected”错误
在您进行身份验证后,WorkSpaces 客户端可能会显示“Launching Session”消息,然后显示“Disconnected”消息,没有其他错误。
当 WorkSpaces 客户端可通过端口 443 进行身份验证但无法通过 UDP 端口 4172 或 UDP 4195 建立流式连接时,就会出现此问题。使用 RDP 连接到 WorkSpace 以检查网络连接并验证您的配置是否符合网络要求。
您访问 WorkSpaces Personal 实例的网络不稳定可能会导致 WorkSpaces Personal 断开连接并重新连接。
当您通过 VPN 进行连接,然后连接到 WorkSpace 时,也可能会出现连接问题。确认问题是否仅在您使用 VPN 或代理进行连接时出现,或者连接问题是否在没有 VPN 或代理的情况下仍然存在。
如果用户通过 VPN 访问 WorkSpace,则连接必须支持至少 1200 字节的最大传输单位 (MTU)。
您无法通过连接到您的虚拟私有云 (VPC) 的 VPN 访问 WorkSpace。要使用 VPN 访问 WorkSpaces,必须通过 VPN 的公共 IP 地址使用互联网连接。有关详细信息,请参阅 WorkSpaces Personal 的 IP 地址和端口要求。
启动会话后出现“Unable to connect”或“Unable to log in”错误
在您进行身份验证后,WorkSpaces 客户端可能会显示“Launching Session”消息,但随后客户端可能会显示以下错误消息之一:
- “Unable to connect.Your WorkSpace is not reachable at the moment.You can try and reconnect anytime”。
- “Unable to connect.We couldn't launch your WorkSpace.Please try again.If you need help, contact your administrator”。
- “Unable to log in.We couldn't launch your WorkSpace.Please try again.If you need help, contact your administrator”。
您收到前面的一条消息是因为以下服务之一未响应运行状况检查:
- SkyLightWorkspaceConfigService
- 适用于 Windows 的 PCoIP Standard Agent(仅限基于 PCoIP 的 WorkSpaces)
- STXHD 托管应用程序服务(仅限基于 PCoIP 的 WorkSpaces)
- DCV 服务器(仅限基于 WSP 的 WorkSpaces)
- 适用于 DCV 的 WSP Adapter(仅限基于 WSP 的 WorkSpaces)
如果服务未运行,则 WorkSpace 的状态可能会显示为 Unhealthy(不正常)。要重新启动该服务,请使用 WorkSpaces 控制台或 WorkSpaces 客户端重新启动 WorkSpace。
如果您重新启动 WorkSpace 后状态仍为 Unhealthy(不正常),请完成以下步骤以验证所需的服务是否正常运行:
-
以管理员身份运行以下 Windows PowerShell 命令以打开 WorkSpace 的所有网络适配器:
Get-NetAdapter | Where status -ne Up | Enable-NetAdapterPCoIP WorkSpaces:
Get-Service -Name SkyLightWorkspaceConfigService, PCoIPAgent | Select-Object -Property Name, DisplayName, Status, StarttypeDCV WorkSpaces:
Get-Service -Name SkyLightWorkspaceConfigService, WSP,dcvserver | Select-Object -Property Name, DisplayName, Status, Starttype -
如果状态为 Stopped(已停止),请运行以下命令以启动服务:
PCoIP WorkSpaces:
Get-Service -Name SkyLightWorkspaceConfigService, PCoIPAgent |Start-Service -verboseDCV WorkSpaces:
Get-Service -Name SkyLightWorkspaceConfigService, WSP,dcvserver | Start-Service -verbose -
如果状态为 Stopped(已停止)且 StartType 为 Disabled(已禁用)或 Manual(手动),请运行以下命令将 StartType 更改为 Automatic(自动)。
PCoIP WorkSpaces:
Get-Service -Name SkyLightWorkspaceConfigService | Set-Service -StartupType Automatic Get-Service -Name SkyLightWorkspaceConfigService | Start-ServiceGet-Service -Name PCoIPAgent | Set-Service -StartupType Automatic Get-Service -Name PCoIPAgent | Start-ServiceDCV WorkSpaces:
Get-Service -Name SkyLightWorkspaceConfigService | Set-Service -StartupType Automatic Get-Service -Name SkyLightWorkspaceConfigService | Start-Service Get-Service -Name WSP | Set-Service -StartupType Automatic Get-Service -Name WSP | Start-Service Get-Service -Name dcvserver | Set-Service -StartupType Automatic Get-Service -Name dcvserver | Start-Service然后启动服务。
有关如何对不正常的 WorkSpaces 进行故障排除的详细信息,请参阅如何对处于不正常状态的 Windows WorkSpace 进行故障排除?
“Directory unavailable”或“Authentication failure”错误
如果您收到“Directory unavailable”错误,请参阅如何解决 WorkSpaces 中的“Directory Unavailable”错误?
如果您收到“Authentication failure”错误,请参阅为什么我无法使用 WorkSpaces Personal 客户端对我的 WorkSpace 进行身份验证?
“Something went wrong”错误
在您进行身份验证后,WorkSpaces 客户端可能会卡滞在启动屏幕上。然后,显示“Something went wrong”错误。此错误是由于您的 SAML 身份验证配置出现问题所致。要对 SAML 身份验证问题进行故障排除,请参阅 How do I troubleshoot SAML 2.0 authentication issues in WorkSpaces?(如何对 WorkSpaces 中的 SAML 2.0 身份验证问题进行故障排除?)
“Unable to register”错误
当您尝试注册 WorkSpace 时,您可能会收到以下错误消息:
“Unable to register.This device is not authorized to access the WorkSpace.Please contact your administrator for assistance”。
如果您已激活 IP 访问控制组,请确认用户连接的公共 IP 地址允许访问 WorkSpace。必须限制对 Workspaces 目录中可信设备的访问权限。展开 Access Control Options(访问控制选项),然后验证以下内容:
- 是否已允许设备访问 WorkSpaces 目录。
- 是否已允许从中访问 WorkSpace 的客户端设备。
**注意:**默认情况下,WorkSpaces 的 Web 访问权限和 Windows 客户端处于关闭状态。检查是否已开启可信设备设置且状态为 Valid(有效)。然后,确保已在客户端计算机上安装正确的分支证书、中间证书(可选)和根证书。
相关信息
- 语言
- 中文 (简体)

相关内容
AWS 官方已更新 5 个月前
