安装VMM 2012 R2累积更新1可能遇到的问题

我从https://support.microsoft.com/en-us/kb/2904712 查看相关描述并下载补丁进行安装。

Issues

Update Rollup 1 for System Center 2012 R2 Virtual Machine Manager resolves the following issues:

  • System Center 2012 R2 Virtual Machine Manager cannot deploy a new or imported VMWare template.
  • A virtual machine with that uses VHDX cannot be refreshed correctly in System Center 2012 R2 Virtual Machine Manager, and you receive the following error message:

    Refresh job failed with error 2912: The requested operation cannot be performed on the virtual disk as it is currently used in shared mode (0xC05CFF0A)

  • Database operations sometimes fail with "FailedToAcquireLockException."
  • A new virtual machine template from a template that specifies an operating system profile doesn‘t use credentials from the operating system profile.
  • Virtual machines in VMWare that connect by the using Cisco N1000V dvSwitch are unavailable for management from Virtual Machine Manager.
  • System Center Virtual Machine Manager service crashes if you disable one of the teamed network adapters.
  • The Get-Scstoragearray -host command should return storage arrays that are visible to a host that is using zoning.
  • During the discovery of a network-attached storage (NAS) provider, the credentials that are used do not include a domain name.
  • Some localized strings are not displayed correctly in the UI.
  • A query to find the certificate should match both the subject name and the friendly name because FindBySubjectName is a wildcard search.
  • Template deployment fails, and you receive the following error message:

    Error (2904)
    VMM could not find the specified path on the <Server name> server.
    The system cannot find the path specified (0x80070003)
  • Virtual Hard Disk (VHD) cannot be mounted on a host because VHD conflicts with other disks because of a stale entry that was left in the dictionary of Virtual Machine Manager memory.
  • Differencing disk based deployment may fail because the parent disk is being refreshed as noncached.

VMM server和控制台安装都正常。但是在执行文章中提供的SQL脚本:

/* script starts here */ALTER Procedure [dbo].[prc_RBS_UserRoleSharedObjectRelation_Insert]( @ID uniqueidentifier, @ObjectID uniqueidentifier, @ObjectType int, @RoleID uniqueidentifier, @UserOrGroup varbinary (85), @ForeignAccount nvarchar (256), @IsADGroup bit, @ExistingID uniqueidentifier = NULL OUTPUT)ASSET NOCOUNT ON SELECT @ExistingID = [ID] FROM [dbo].[tbl_RBS_UserRoleSharedObjectRelation] WHERE [ObjectID] = @ObjectID AND [RoleID] = @RoleID AND -- Select owner OR Select all which matches ForeignAccount or UserOrGroup OR -- both ForeignAccount and UserOrGroup is NULL (([UserOrGroup] = @UserOrGroup OR [ForeignAccount] = @ForeignAccount) OR ([UserOrGroup] IS NULL AND @UserOrGroup IS NULL AND [ForeignAccount] IS NULL AND @ForeignAccount IS NULL)) /* Ignore duplicate entries */ IF (@ExistingID IS NULL) BEGIN INSERT [dbo].[tbl_RBS_UserRoleSharedObjectRelation] ([ID] ,[ObjectID] ,[ObjectType] ,[RoleID] ,[UserOrGroup] ,[ForeignAccount] ,[IsADGroup] ,[IsOwner] ) VALUES ( @ID, @ObjectID, @ObjectType, @RoleID, @UserOrGroup, @ForeignAccount, @IsADGroup, 0 ) ENDSET NOCOUNT OFFRETURN @@ERROR/* script ends here */

时遇到如下错误

经检查发现是SQL语句有误,该空格没空格,该换行没换行。

我修改成下面这样后就可以正常执行了

/* script starts here */
ALTER Procedure [dbo].[prc_RBS_UserRoleSharedObjectRelation_Insert]
(
        @ID uniqueidentifier,
        @ObjectID uniqueidentifier,
        @ObjectType int,
        @RoleID uniqueidentifier,
        @UserOrGroup varbinary (85),
        @ForeignAccount nvarchar (256),
        @IsADGroup bit,
        @ExistingID uniqueidentifier = NULL OUTPUT
    )
AS
SET NOCOUNT ON
       SELECT  @ExistingID = [ID]
     FROM [dbo].[tbl_RBS_UserRoleSharedObjectRelation]
     WHERE [ObjectID] = @ObjectID AND [RoleID] = @RoleID   AND
  -- Select owner OR Select all which matches ForeignAccount or UserOrGroup OR
  -- both ForeignAccount and UserOrGroup is NULL
      (([UserOrGroup] = @UserOrGroup OR [ForeignAccount] = @ForeignAccount) OR 
      ([UserOrGroup] IS NULL AND @UserOrGroup IS NULL AND [ForeignAccount] IS NULL AND @ForeignAccount IS NULL))     
/* Ignore duplicate entries */
      IF (@ExistingID IS NULL)
      BEGIN
     INSERT [dbo].[tbl_RBS_UserRoleSharedObjectRelation]
               ([ID]
               ,[ObjectID]
               ,[ObjectType]
               ,[RoleID]
               ,[UserOrGroup]
               ,[ForeignAccount]
               ,[IsADGroup]
               ,[IsOwner]
               )
    VALUES  
     (
            @ID,
            @ObjectID,
            @ObjectType,
            @RoleID,
            @UserOrGroup,
            @ForeignAccount,
            @IsADGroup,
            0   
        )
      END
SET NOCOUNT OFF
RETURN @@ERROR
/* script ends here */

时间: 2024-10-21 17:24:58

安装VMM 2012 R2累积更新1可能遇到的问题的相关文章

新安装VMM 2012 R2控制台可能遇到的问题

在安装VMM 2012 R2控制台累积更新1后,可能会遇到如下错误,如"对路径:"C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\bin\AddInPipeline\HostSideAdapters"的访问被拒绝." 我们可以通过以下几个步骤来解决 找到文件夹:C:\Program Files\Microsoft System Center 2012 R2\Virtua

04-SCVMM2012之安装SCVMM 2012 R2

3.4.安装SCVMM 2012 R2插入SCVMM安装光盘,点击"安装" 勾选"VMM管理服务器",勾选时默认会勾选VMM控制台 输入名称,组织及产品秘钥,如果不输入秘钥,VMM以评估模式安装,180天后失效,点击"下一步" 接受许可协议,点击"下一步" 根据需要选择客户体验改善计划,点击"下一步" 生产中建议启用Microsoft Update,点击"下一步" 选择安装路径,点击&q

SCCM 2012 R2实战系列之一:SQL安装

大家好,从今天开始跟大家一起分享自己学习SCCM 2012 R2的一些心得和具体的部署配置,希望能帮到大家.由于SCCM部署的步骤比较复杂,内容也比较多,所以我把SCCM整个部署过程分为以下三个章节: l SQL Server 2012 SP1的安装 l SCCM安装前的准备工作 l SCCM 主站点的部署 1.1 实验拓扑图: 下面是本次部署的一个拓扑图,所有操作系统均使用Windows Server 2012 R2 Datacenter版本 1.2 域环境的准备 微软的很多产品都是基于域环境

SCVMM 2012 R2运维管理四之:安装SCVMM

SCVMM 2012 R2运维管理四之:安装SCVMM 随着虚拟化和私有云的盛行,我们对虚拟机的管理的需求也越来越高,微软的System Center中的System Center Virtual Machine Manager(简称SCVMM)正是一款能够管理微软.Vmware.思捷三家的虚拟化基础架构平台的管理工具.同时对于微软自己的产品Hyper-v来说,如果希望能够做到实时迁移.P2V.V2V等操作,也只能在SCVMM平台上实现.Windows Server操作系统自带的Hyper-v管

VMware vSphere系列教程-安装Windows Server 2012 R2(四)

安装Windows 2012 R2 操作系统 选择windows 2012的iSO镜像安装步骤忽略. 安装VMware Tools工具 更新系统补丁 更新系统补丁,修复漏洞,此步骤忽略 原文地址:http://blog.51cto.com/oakcdrom/2102907

SCCM 2012 R2安装部署过程和问题(二)

上篇:SCCM 2012 R2安装部署过程和问题(一) 在上篇我们已经完成了SCCM 2012 R2安装前的准备,其中有许多细节,关于数据库的准备和权限的设置是需要特别注意的.那么接下来我们开始安装SCCM 2012 R2. SCCM采用以站点和站点角色为核心的部署架构.在不同的物理位置可以部署站点,形成一个树形的层次结构,在这个结构中站点有主辅之分,也有父子之分:在同一个站点内可以部署不同的服务器,为各个服务器部署不同的站点角色,例如管理点,分发点,软件升级点等站点角色.其架构与域有相似之处,

01-SCOM 2012 R2 安装前准备

[简介] 就像微软其它的产品一样,SCOM安装前也要有几个先决条件: 1.SQL SERVER数据库 数据库是SCOM必不可少的一个条件,它是用来存放SCOM的所有的监视数据.在安装完SCOM之后,会在数据库服务器上生成两个新的数据库,一个是操作数据库(OperationsManager),一个是数据仓库数据库(OperationsManager). 操作数据库是一个 SQL Server 数据库,此数据库包含管理组的所有配置数据,并存储为管理组收集和处理的所有监视数据. 操作数据库保留短期数据

SCCM 2012 R2实战系列之二:前提工作准备

在上一篇中,我们完成了SQL Server 2012的安装和配置.现在跟大家分享SCCM安装前的准备工作. 2.1 SCCM 2012 R2 准备工作 2.1.1 创建并分配System Management容器权限 打开ADSI编辑器,连接到"默认命名上下文"---右击"system"新建对象---选择"container"-下一步---填写值"system management"---下一步---完成 分配System M

SCCM 2012 R2 ----5 部署SCCM2012R2 LINUX客户端

设置LINUX客户端证书模板 登陆LINUX 申请cloud域根证书 申请计算机证书 安装SCCM 2012 R2 Linux客户端 Chmod +xinstall ./install-mp sccm.cloud.com -sitecode SHZ -UsePKICert host.pfx -certpw 1234 -httpsport443 -NoCRLCheck ccm-Universalx64.tar 设置SCCM LINUX客户端