Quantcast
Channel: Virtual Machine Manager – Clustering forum
Viewing all 545 articles
Browse latest View live

SCVMM created VMs not displayed in Failover Cluster Manager

$
0
0

I have a 2012 Hyper-V failover cluster setup and recently added SCVMM 2012 SP1 to the mix so I could perform some P2V migrations and familiarize myself with its other many capabilities. I noticed that if I create a VM inside SCVMM it doesn't show up in the FCM UI with the other VMs I created from FCM. VMs that you create in FCM do get picked up by SCVMM however. Is this by design?

Thanks,

Greg


SCVMM VMNAME Resource shows in failover cluster

$
0
0

Hi,

When creating VM's in SCCM I am noticing that the VMs are named "SCVMM VMNAME Resource".  I only only it to show the VMNAME like all the other servers.

Is there a way to disable this?

Many thanks

Hyper-V failover to vm host outside SAN.

$
0
0
Hi All,

I have a client that is looking to set up a failover server located in a different building.

Their current set up consists of 2x Windows Server 2008R2 Hyper-V hosts running 14 vm's in one cluster sitting on a HP SAN. Using SCVMM 2008R2

My question is, is there a way to set up failover to a third vm-host in a different building with it's own dedicated storage?

If not, could you suggest an alternative to what they are looking for?

Create Multiple Hyper-V Cluster with SCVMM?

$
0
0

Hi folks,

We have multiple servers with 2 different hardware specs (CPU, NIC, HBA) ,  We already created 1 HyperV cluster with SCVMM

with 1 type of severs (3) and plan to create another cluster with the other type of servers.  Is it doable on SCVMM?  what's the best practice for this?   Do we need to create different logical networks in SCVMM to accommodate the new cluster?

Thanks.

SCVMM ERROR REFRESH PERFORMANCE DATA FAIL

$
0
0

Dear Microsoft,

         we are facing SCVMM ERROR refresh performance data failed and attached the error message and if it's possible to fix the issue.

Regards,

vignesh.R

SCVMM Service Account issue

$
0
0

God morning

Anyone ever had this issue

The SCVMM Service account keep stopping.

Service Status: Stopped

1-manually restart, still not working

2- Restart the server still not starting

Now I can’t user SCVMM at all

Is it a Microsoft issue? Anyone can help, I will really appreciate.

Thanks


FD

XenServer 6.5 & SCVMM 2012R2

$
0
0

Any idea of when XenServer 6.5 will be supported in SCVMM 2012R2? I've just installed Update Rollup 8 and still receiving the message

Error 20555

"The Citrix XenServer host %1 could not be added because the version of the hypervisor is not supported by Virtual machine Manager. Ensure your XenServer hosts are version 6.0."

I have the Microsoft System Center Integration Pack 6.5.0 installed, certificates saved to the Trusted People store, but still the same error persists.

Thanks in advance for any assistance!

Regards,

TJB

Overcommited, but should not be overcommited.

$
0
0

Hello all,

One of our clusters is currently in a state of being overcommited. We have 1 host as reserve and the cluster contains of 5 hosts. We use 2012 R2. I have used the following article to calculate where the issue could be:

http://www.miru.ch/unveiling-cluster-overcommit-in-scvmm-2012-hyper-v/

However, I get the results below. All the outcomes are positive, so what could be the issue? I suspect it has something to do with the 192 GB vm. Also, is there any impact for failover? All other hosts seem to have enough memory to support any other host failover.

HostnameTotalReservedTotal usedLargestVMOtherVMdemandFail 1Fail 2Fail 3Fail 4Fail 5
Host15122486,5192294,5x-8,5-8,5-8,5-8,5
Host2512221632184102x262262262
Host3512222432192192254x254254
Host451222403220878238238x238
Host5512236032328-42118118118x
......77,5426426426426





Powershell script that chooses 1 cluster storage volume over another when creating virtual machine

$
0
0

I'm trying to write a script to choose between two different CSVs. The goal is to use the one with the most free space. I'm almost positive the script will start with a Get-Command and possibly use a Where-command and a Set-command. I'm not sure if it will use a For-each loop. Some help would be appreciated.

The two volumes I'm trying to use are 'C:\ClusterStorage\Volume35' and 'C:\ClusterStorage\Volume36'.

- I want it to query the volumes and select the one with the most free space at the time this script is ran as the free space available will vary.

The variable I'm trying to define for the creation of the virtual machine's hardware is: $CSV =

The Create New Virtual Machine part of the script looks like this:

Create New Virutal Machine

New-SCVirtualMachine `

-VM $VM `

-Name $CloneName `

-Description "" `

-JobGroup $JobGroup `

-UseDiffDiskOptimization `

-RunAsynchronously `

-Path $CSV `


creating virtual machine

Choosing between two different volumes instead of all volumes on cluster shared volume

$
0
0

I'm trying to create a script that will go through my cluster shared volume and find the volume with the most free space between two different volumes: C:\ClusterStorage\Volume35 and C:\ClusterStorage\Volume36. The script I need will be used for SCVMM and will create a virtual machine template for me on the volume with the most free space. The script I have now that I'm using does this but it goes through all the volumes on the cluster shared volume. I need to limit this script to just check the two volumes, volume 35 and 36, and select the one with the most free space to use for the virtual machine creation. 

My current script, or part of the script that will perform this, looks like this (I need help modifying it to do what I need):

$objs = @() 
$cluster = "CEP-HV-STAGING"
 
#Gets the cluster shared volumes from the cluster and their associated properties 
$csvs = Get-ClusterSharedVolume -Cluster $cluster  
foreach ( $csv in $csvs ) 

   $csvinfos = $csv | select -Property Name -ExpandProperty SharedVolumeInfo 
   foreach ( $csvinfo in $csvinfos ) 
   { 
      $obj = New-Object PSObject -Property @{ 
         Path        = $csvinfo.FriendlyVolumeName 
         PercentFree = $csvinfo.Partition.PercentFree 
      } 
      $objs += $obj 
   } 

 

$mostfree = $objs |  Sort-Object -property PercentFree -Descending | Select-Object -First 1 | Select -ExpandProperty Path
$CSV = $mostfree
$CSV

Thank you.


VM creation taking long time in Cluster host

$
0
0

We've Hyper-V cluster deployed with SCVMM and 8 host.

  • All nodes are in same blade cassis.
  • All nodes are identical.
  • All configuration also identical.

But we are facing time out error at the time of creating and moving VM guest only in 3 nodes. All other nodes are working fine.

Now it's become a burning issue. Please help me.


Mithun Dey Web: http://cloudmithun.wordpress.com If this may give your necessary resolution please mark it as Answre.

Failover Cluster Takes Control of non-designated HA SAN LUNs

$
0
0

I have a Compellent SAN configured with a 20TB CSV that is used for the HA VMs. On top of that I have configured six 5TB LUNs that are assigned to the individual hypervisors (1 each). Sometimes without knowing until it's too late the FCM (Failover Cluster Manager) takes control of one of the non-HA LUNS and assigns it to the current storage owner. This, of course, breaks any VM with resources stored on that LUN.

Is there a way to tell FCM to not take control of a certain disk or LUN from the hypervisors?

2 Node Failover performance

$
0
0

Dear all,

I have a 2 node failover cluster connected to a storage via iSCSI hosting 6 VMs all and i´m facing a serious performance problems, can someone help me or send me hits on our and from where should I start troubleshooting. The VMs are definitely slow. 

Here are my configuration

NODE 1 and 2 connected to the storage via iSCSI. All the servers and storages are on the same LAN Switch, no VLANs just different IPs.

NODE 1 and 2 are the same box, HP DL 380p G8, 4 Cores of 2.50GHz CPU with 48GB of RAM and 32 GB of RAM.

The VMs are running with 8 and 6 GB of RAM and 1 vCPU of 2 Cores.

The OS os the Host and VMs are the same, Windows Server 2012 Standard Edition.

The VMs are running webserver, company applications and database.

Please I need help.

Regards,

NC\



nelson chamba

I need help with my AMD part in my computer

$
0
0

Okay so ill make this quick i have this thing called AMD setting for my amd graphics card and when i try to launch it this appears:

No AMD graphics driver is installed, or the AMD driver is not functioning properly. Pleast install the AMD driver appropriate for your AMD hardware.

Any can help that would greatful thank you!


Delete Missing VM in VMM

$
0
0

Hello! I have SCVMM 2012R2 with many missing VM.

VMM database place on 2012 SQL Server.

I try to delete it according to the article: https://narayanguptablog.wordpress.com/2015/12/28/fixing-the-incorrect-vms-state-in-scvmm/

unfortunately sql query gave me the error that can not find function [dbo].[prc_RR_Refresher_Delete]

What am i doing wrong?

Storage migration using management network

$
0
0

Hello,

 

We have two 8 node 2012R2 Hyper-V clusters. Both clusters have the same networking configurations -  separate networks for Live Migration\Cluster and management. 

 

We need to storage migrate a number of VMs from one cluster to another.

 

I'm using SCVMM to do this. 

 

When I do it with the virtual machine turned on it uses the Live Migration network and SMB multichannel, so no problem here.  However, When the VM is turned off It uses the management network instead :/


I would have thought a storage migration would be quicker when the VM is turned off - we can accept the downtime for these services

 

Why does this happen and is there a way to force it to use the Live Migration network even when the VM is turned off? 

Thanks in advance

ISCSI communication with HyperV Nodes - 10GB Switch

$
0
0

Hi,

I am trying to setup a two node cluster with ISCSI storage in System Center Virtual Machine Manager 2012 R2. . I am unable to get HyperV hosts to communicate to ISCSI Target in VMM. 

HyperV Node 1 : three 1GB Nic's and two 10 GB Nics (OS : Server 2012 R2)

HyperV Node 2 : three 1GB Nics and two 10 GB nics (OS : Server 2012 R2)

ISCSI Server : two 1 GB Nic's and two 10 GB Nic's 

Server which has VMM on it : three 1 GB Nic's and one 10 GB NIC

I am tring to use 10GB NIC's for Storage communication and all these 10GB NIC's are connected to SuperMicro SSE-X24SR-L3 10GB layer 3 switch. 

all the 1 GB NIC's are connected to cisco Switches with connection to Internet.

How can I configure VMM to use 10GB NIC's for Storage communication so that I can use 1 GB NIC's for Host management and Virtual machine management? 


Deepthi Nune

VMs with status: Missing

$
0
0

Hello,

I have SCVMM 2012 R2 managing a 212 R2 failover cluster with 4 nodes. The console shows a few dozen of VMs with "Missing" status, without an obvious reason.

I've tried to live migrate them from one node to another, but every refresh job fails with the following error:

Error (2915)
The Windows Remote Management (WS-Management) service cannot process the request. The object was not found on the server (node33.global.corp).

WinRM: URL: [http://node33.global.corp:5985], Verb: [GET], Resource: [http://schemas.microsoft.com/wbem/wsman/1/wmi/root/virtualization/v2/Msvm_VirtualSystemSettingData?InstanceID=Microsoft:99349A00-071F-4D47-B27B-EA78E36AA34A]

Unknown error (0x80338000)

Recommended Action
Ensure that the VMM agent is installed and running. If the error persists, restart the virtualization server (node33.global.corp) and then try the operation again. 

This error can also happen due to an older version of the VMM agent on the virtualization server. Ensure that the VMM agent is upgraded to the latest version, and then try the operation again.

The VMM agent version is not older.

I've also tried to restart the respective node, but the result is the same.

Any help will be appreciated.

Thank you,

Gabriel

Google推荐美国NCSU毕业证|办理美国北卡罗来纳州立大学毕业证Q微541520157|NCSU学历认证|成绩单使馆认证—诚招代理 North Carolina State University,Raleigh

$
0
0
Q/微541520157办理国外大学毕业证成绩单真实教育部认证、使馆公证★诚招代理★

通知:加我微信请看准Key学历认证 
--------------------------------留学信息咨询 留学服务中心  联系人Key-----------------

◆办理真实使馆公证(即留学回国人员证明,不成功不收费!!!) 

◆办理教育部国外学历学位认证。(网上可查、永久存档、快速稳妥,回国发展,考公务员,落户,进国企,外企,创业,无忧愁) 
◆办理各国各大学文凭(世界名校一对一专业服务,可全程监控跟踪进度)   

◆全套服务:毕业证、成绩单、真实使馆公证、真实教育部认证。让您回国发展信心十足!

◆可以提供钢印、水印、烫金、激光防伪、凹凸版、最新版的毕业证、百分之百让您绝对满意、设计,印刷,DHL快递;毕业证、成绩单,真实大使馆教育部认证,速度快。

我们真诚的提醒广大留学生朋友:  
一. 本行业市场混乱,不要只贪图便宜,无论是真实版还是顶级1:1复制版,都会有相应的成本在里面,我们绝对保证一分钱一分货!  
二. 真实的使馆认证及教育部认证,公司完全按照正规的流程手续办理。可自行前往北京教育部窗口递交与拿结果!!!目前有一些同行所办理出来的认证只能在虚假网站查询1-3个月左右的时间,并不是教育部官网,也不可能永久存档。那样是对学生的不负责任,在办理的时候一定要慎重!  
三. 随时可以监视进度,我们会让您清楚看到,你所投入的每一分钱都能够确实得到回报,若您认为不值得,完全可以中止付款。

通知-------本公司城招各地代理商,一切事宜价格最低,保证信誉效率质量,客户个人信息保密。

-------------------------以上联系方式敬请保留,以备急用,诚心合作,真诚制作!!欢迎新老客户咨询办理!!
Viewing all 545 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>