App-V部署提示及问题总结

本文涉及的产品
RDS SQL Server Serverless,2-4RCU 50GB 3个月
推荐场景:
云数据库 RDS SQL Server,基础系列 2核4GB
云防火墙,500元 1000GB
简介:

根据论坛用户和其他途径的反馈,很多时候问的问题出现在App-V Management Server的安装和初次使用上,这里分享下安装时候的必选步骤,并附上安装参考文档,务求在部署时尽量减少遇到问题的几率,并且在此文分享几个常见的用户问题的原因和解决方法。

以下以Server 2008 R2为例,Server 2008以及Server 2003的安装可以参照。

安装要点 

1. IIS 必需组件

安装IIS服务时,以下内容必须安装 
ASP.NET (and all required role services and features)
Windows Authentication
IIS Management Scripts and Tools
IIS 6 Management Compatibility

  

2. SQL Server防火墙例外

假如你使用的SQL Server与App-V Management Server不在同一台机上,那么在后者的防火墙上需要设置SQL Server端口例外,在入站规则允许1433端口。微软的官方文档MSAppVirt45Trial_Guide_Final中的演示环境是将两者都部署在同一台机上,所以没有提到此要点。


防火墙例外 

在入站规则中添加以下2个程序

3. App-V Management Server

用于RTSPS协议 
%PROGRAMFILES%\Microsoft System Center App Virt Management Server\App Virt Management Server\bin\sghwdsptr.exe 
用于RTSP协议
%ProgramFiles%\Microsoft System Center App Virt Management Server\App Virt Management Server\bin\sghwsvr.exe 


4. RTSPS协议设置 

详见下面的微软官方文档App-V Security Operations Guide 
 

常见问题

报错:无法连接到SQL Server。 
原因:防火墙没有打开 SQL Server 1433端口。


报错:IIS virtual directory 无法安装。 
原因:IIS角色安装时中没有添加 IIS Management Scripts and Tools,IIS 6 Management Compatibility。


报错:Code 0000C801。 
原因:IIS角色安装时没有添加 Windows Authentication。


 

可供参考文档

Microsoft Application Virtualization Version 4.5 Trial Guide
http://download.microsoft.com/download/f/7/8/f784a197-73be-48ff-83da-4102c05a6d44/MSAppVirt45Trial_Guide_Final.docx

App-V Security Operations Guide 
http://download.microsoft.com/download/f/7/8/f784a197-73be-48ff-83da-4102c05a6d44/AppV_Secuirty_Operations_Guide.docx

Configuring the Firewall for the App-V Servers
http://technet.microsoft.com/en-us/library/ff361465.aspx

App-V 4.5 安装参考指南(中文版) 
http://bbs.winos.cn/thread-49320-1-2.html




本文转自 VirtualTom 51CTO博客,原文链接:http://blog.51cto.com/virtualtom/292180,如需转载请自行联系原作者

目录
相关文章
|
5月前
|
编译器 Linux PHP
【Azure App Service】为部署在App Service上的PHP应用开启JIT编译器
【Azure App Service】为部署在App Service上的PHP应用开启JIT编译器
|
5月前
|
Java Linux
【Azure 应用服务】部署WAR包到App Service访问出现404错误的解决方式
【Azure 应用服务】部署WAR包到App Service访问出现404错误的解决方式
|
3月前
|
开发工具 git C++
【App Service】VS Code直接部署App Service时候遇见 “fatal: not a git repository (or any of the parent directories): .git”
通过VS Code发布Python App Service的时候,遇见了发布失败错误: The deployment failed with error: fatal: not a git repository (or any of the parent directories): .git . Please take a few minutes to help us improve the deployment experience
89 24
|
6天前
|
网络协议 容器
【Container App】部署Contianer App 遇见 Failed to deploy new revision: The Ingress's TargetPort or ExposedPort must be specified for TCP apps.
Failed to deploy new revision: The Ingress's TargetPort or ExposedPort must be specified for TCP apps.
50 27
|
5月前
|
安全 API 数据安全/隐私保护
【Azure App Service】通过Visual Studio部署Azure App Service 遇见 401 'Unauthorized'错误
【Azure App Service】通过Visual Studio部署Azure App Service 遇见 401 'Unauthorized'错误
|
5月前
|
资源调度 JavaScript Linux
【Azure 应用服务】本地Node.js部署上云(Azure App Service for Linux)遇到的三个问题解决之道
【Azure 应用服务】本地Node.js部署上云(Azure App Service for Linux)遇到的三个问题解决之道
|
2月前
|
JavaScript C++ 容器
【Azure Bot Service】部署NodeJS ChatBot代码到App Service中无法自动启动
2024-11-12T12:22:40.366223350Z Error: Cannot find module 'dotenv' 2024-11-12T12:40:12.538120729Z Error: Cannot find module 'restify' 2024-11-12T12:48:13.348529900Z Error: Cannot find module 'lodash'
47 11
|
2月前
|
开发框架 监控 .NET
【Azure App Service】部署在App Service上的.NET应用内存消耗不能超过2GB的情况分析
x64 dotnet runtime is not installed on the app service by default. Since we had the app service running in x64, it was proxying the request to a 32 bit dotnet process which was throwing an OutOfMemoryException with requests >100MB. It worked on the IaaS servers because we had the x64 runtime install
|
2月前
|
C#
【Azure App Service】使用Microsoft.Office.Interop.Word来操作Word文档,部署到App Service后报错COMException
System.Runtime.InteropServices.COMException (0x80040154): Retrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following error: 80040154 Class not registered (0x80040154 (REGDB_E_CLASSNOTREG)).
|
3月前
|
机器人 Shell Linux
【Azure Bot Service】部署Python ChatBot代码到App Service中
本文介绍了使用Python编写的ChatBot在部署到Azure App Service时遇到的问题及解决方案。主要问题是应用启动失败,错误信息为“Failed to find attribute 'app' in 'app'”。解决步骤包括:1) 修改`app.py`文件,添加`init_func`函数;2) 配置`config.py`,添加与Azure Bot Service认证相关的配置项;3) 设置App Service的启动命令为`python3 -m aiohttp.web -H 0.0.0.0 -P 8000 app:init_func`。