Quantcast
Channel: VMware Communities: Message List
Viewing all 202721 articles
Browse latest View live

Re: USB devices is not mounted in VMware vSphere Hypervisor 5

$
0
0

KraL wrote:

 

Yes, but unfortunately without more luck.

This step was already mentioned on reply 3.

 

But in reply 3 its mentioned that an 8GB stick is used, maximum possible is 2GB according to the KB.

 

// Linjo


Some unknown problem with VMplayer intstalling

$
0
0

Hello, I am a new user here. Please to meet you all.

I spent some hours today fighting vs. unusual problem.

I have got the install file from vmware.com: VMware-player-5.0.2-1031769.exe

When I click this program, I see the picture: see in attached file.

A have standard configuration of Windows 7 services, I closed antivirus program and... Nothing, completely nothing.

 

Can you help me? - Yes, you can.

Thank you.

Re: HP NC380T Not found? update

$
0
0

I have tried to do both and both failed so I have concluded the NIC is faulty and the seller is sending me a new one.

 

Thanks for your answer I didn't know what async meant until now.

vmx86.sys problem

$
0
0

Hi guys! I have the vmx86.sys prob on vmware 9 I think that I just have to export it but I don't know how.

 

Can you help me with this??

 

Greetings.

Re: Clone or copy or ? old VM config settings

$
0
0

Create a templetVM or copy with winscp

Cheers,

Denis

Re: Problem with Converter Standalone Client 5

$
0
0

Thanks POCEH The log is already in first discussion

 

Faulting application name: converter.exe, version: 8.1.0.15346, time stamp: 0x51642626 Faulting module name: MSVCR90.dll, version: 9.0.30729.6161, time stamp: 0x4dace5b9 Exception code: 0x40000015 Fault offset: 0x0005beae Faulting process id: 0x598 Faulting application start time: 0x01ce78c1be883441 Faulting application path: C:\Program Files (x86)\VMware\VMware vCenter Converter Standalone\converter.exe Faulting module path: C:\Windows\WinSxS\x86_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161_none_50934f2ebcb7eb57\MSVCR90.dll Report Id: 16eb6cdd-e4b5-11e2-ab85-005056c00008

Re: Create a VM directory tree in vCenter (with folder exists check)

$
0
0

Hello Joerg,

Thanks for your help.  It clarified what I had to return from the function.

 

I decided to accomplish this a little different way.  Not sure if it is any better, worse or indifferent but in my non-programmer head it made sense.

I changed the allSubFolders to have 2 entries (folder name & folder object).  Now in my found, I retrieve the subfolder name (array index), add 1 (get the next record which should be the object), and return that.

My testing seems to create the results I want but can you let me know if this is a bad programming standard or makes sense?

 

Thanks

 

//////////////////////////////////////////////////////////////////////////////
// CODE: Javascript                                                            //
// TITLE: BuildFolderTree                                                    //
// AUTHOR: Brandt Winchell                                                    //
// COLLABORATORS: robrtb12, tschoergez                                        //
// VERSION: 2.1                                                                //
// DATE MODIFIED: July 4, 2013                                                //
// PURPOSE:  Build a directory tree in vCenter VM & Template section        //
// ADDITIONAL INFO: !!Root folder must be created manually before            //
// running this code!!                                                        //
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
// DECLARE VARIABLES
var folderBase = ["Dev","DMZ","Prod","UAT"];//base folders
var folderT1 = ["Servers","Workstations"]; //sub-folders of $folderBase
var folderT2 = ["Windows","Linux"]; //sub-folders of $folderT1
var folderT3 = ["Repo1","Repo2","Repo3","Repo4"]; //sub-folders of $folderT2
var folderT4 = ["T1","T2","T3"]; //sub-folder of $folderT3
//////////////////////////////////////////////////////////////////////////////
// GLOBAL EXCEPTION CATCH FOR NULL INPUT VARIABLES
if (parentFolder == null) {    throw "REFERENCE ERROR: $parentFolder IS NULL!!";    }
//////////////////////////////////////////////////////////////////////////////
// BUILD THE DIRECTORY TREE
// create the $folderBase level of directory
for (var a=0; a<folderBase.length; a++) {    var newBaseFolder = buildFolderTree(parentFolder, folderBase[a]);    var parentFolderObj = newBaseFolder;      // Create the $folderT1 level of folders    for (var b=0; b<folderT1.length; b++) {           var newT1Folder = buildFolderTree(newBaseFolder, folderT1[b]);        var parentFolderObj = newT1Folder;        // Create the $folderT2 level of folders        for (var c=0; c<folderT2.length; c++) {            var newT2Folder = buildFolderTree(newT1Folder, folderT2[c]);            var parentFolderObj = newT2Folder;            // Create the $folderT3 level of folders              for (var d=0; d<folderT3.length; d++) {                   var newT3Folder = buildFolderTree(newT2Folder, folderT3[d]);                var parentFolderObj = newT3Folder;                // Create the $folderT4 level of folders                for (var e=0; e<folderT4.length; e++) {                     var newT4Folder = buildFolderTree(newT3Folder, folderT4[e]);                    }                  }            }           }    }
//////////////////////////////////////////////////////////////////////////////  
// BUILD FUNCTION $buildFolderTree  
function buildFolderTree(parentFolderObj, folderName) {    //Get a list of sublfolders    var children = parentFolderObj.childEntity;    var allSubFolders = new Array();    for (var i in children) {        if (children[i] instanceof VcFolder) {            var subfolderParent = children[i];            var subName = subfolderParent.name; //Get only the folder name            if (debugOutput == true) {                System.log("subfolder Name($subName): " + subName);                }            allSubFolders.push(subName); //Push to array all subfolder names            allSubFolders.push(children[i]); //Push to array all subfolder objects            }        }        if (debugOutput == true) {            System.log("subfolder list($allSubFolders): " + allSubFolders);            }    //Create folder if the folder does not already exists    var found = allSubFolders.indexOf(folderName); //Does $folderName exists in array? True:Index# of subName, False:-1    if (debugOutput == true) {        System.log("Original found($found): " + found);        }        if (found != -1) {            System.log("Folder " + folderName + " already exists. Continue with next item");            var folderObjIndex = found+1; //Get index# of subfolder objects (next item in array)            if (debugOutput == true) {                System.log("New found($folderObjIndex): " + folderObjIndex);                }            return allSubFolders[folderObjIndex];            }        if (found == -1) {            System.log("Building folder " + folderName);            var newFolder = parentFolderObj.createFolder(folderName);            System.log("Built directory: " + parentFolderObj.name + "/" + folderName);            return newFolder;            }        }
//////////////////////////////////////////////////////////////////////////////

Re: the network issue - Unable to add local network connection

$
0
0

Yes try to install vmware tools or change thee network card on the VM.

Cheers,

Denis


Re: orphaned vmdk files script

$
0
0

So the other scenario that is  seen alot is there may be a sole vmdk in a folder that is out of inventory for a particular VM.  The original VM was svmotioned so it left this vmdk in its original location in a folder on the original datastore.

 

As time goes on this type of cruft is left around and forgot about because someone just REMOVED it from the VM and did not DELETE it.

 

Do you have any suggestions on how to find these orphan VMDKs just laying around?

 

thanks!!

Tagging design question

$
0
0

I have got 2 ESX servers to setup with 4 port NICs each - so I would like to know the best way to load network traffic based on management, storage and VM  network. Should I team 2 NICs for iscsi storage then 1 for management and 1 for customer link?

They all should be in different VLAN with a dedicated iscsi switch and separate switch for customers (with dedicated LAN to the data centre)

What is the best design solution for this? The goal is to give the best performance in terms of bandwidth to the customer premise in terms of accessing emails and file services.

Thanks

Re: Total migrations using vmotion

$
0
0

Dear Lucd,

 

We required, Total migrations using vmotion  (Get-Cluster | Select Name,@{N="#vMotion";E={$_.ExtensionData.Summary.NumVmotions}}) and how many Vm's are DRS done and How many Manually completed for Lastmonth . No need to take info which Vm ware migrated, which user migrated and Time-stamp. Simply

 

Output like

 

SN  Cluster Name   Total_VMigration    DRS    Manually (1 month Data).

 

1        vvvvvv                    00                        0            0

Re: vSphere5 Essential Plus Kit and HA

Re: Vmware Autodeploy with host profile not work

$
0
0

Hi,

 

Thanks for your reply. I fixed my problem finally, I found that the default setting is stateless install, not stateful install which will commit to your disk.

 

VMware vSphere 5.1

 

Click the System Image Cache Configuration icon.

 

In the System Image Cache Profile Settings drop-down menu, make your selection.

Option

Description

Enable stateful installs on the host

Caches the image to a disk.

 

Now, my newly deployed ESXi host will boot from Auto Deploy and applied host profile automatically and joined to correspondent cluster group.

I hope this help others faced the same problem. Thanks a lot

 

Penny

Best Practise - Which SCSI Controller for Windows 2012

$
0
0

Hi,

 

We are building a new environment for Windows 2012 servers and was wanting to know what the best practise is for the SCSI controller for Windows 2012 servers. Ive had a look on the net but i cant find a good answer as to which one to select.

 

LSI Logic Parallel

LSI Logic SAS

VMware Paravirtual

 

Note that our builds are scripted so we wont be changing this setting based on how many IOPs a virtual machine does for each build. If you could also give myself a reason why that controller should be used that would be great

 

Virtual Centre Version 5.1.0 Build 1123961

ESXi 5.1.0 1065491

 

Thanks.


Windows8 about how to migrate

$
0
0

I havethevalidationofHorizonMirage4.2.

 

I do not understandthat it will work with theWindows8

Whatmethoddo you needtorunthe① ②?

 

migration:

Windows7 → Windows8

 

Base Layerchange:

Create abaselayerofWindows8,to applytothe currentWindows7.

 

Best regards

 

Because it ispostedfor the first time, pleaseforgive meandclumsiness.


Is it possible to install ESX5.1 as windows2012 Hyper-v guest OS and create guest OS of ESX5.1 ?

$
0
0

Is it possible to install ESX5.1 as windows2012 Hyper-v guest OS and create guest OS of ESX5.1 ?

Re: Best design for using 8 physical NICs on an ESXi 5.1 host

$
0
0

If the portgroups for Management, vMotion and VM Networking never use uplinks 7 and 8 then you might as well create a separate vDS dedicated for NFS. That would be cleaner, easier to understand and more simple to configure. I like this design actually or a variation I'll show below, but it still means that management portgroup is on the vDS. I really don't like this at all. People say it is safe but if vCenter is on one of the hosts that it is managing then a cold restart of your environment is going to be quite a pain. Further host profiles and vDS are both trying to control the networking (unless you exclude some portions of the networking config from the host profile) and this almost always makes life harder. It's something you probably have to experience on a large scale environment to truly appreciate how annoying it is. Environments with less then 20 hosts it probably isn't much of an issue because you can take the extra time required to get it right and it doesn't blow out the total time required to implement the entire solution.

 

Also when you put portgroups on a vDS you have to recognize that those portgroups are now available for VMs to be attached to. Every environment I've ever worked in where mgmt, vMotion, FT were on a vDS with VM Networking some idiot connects several VMs up to portgroups they shouldn't be using. Quite a security issue that, not sure why people just don't think.

 

The following design is a derivative of the mrlesmithjr design. It requires a separate VLAN for each traffic type. For each subsequent VM Networking portgroup the configuration remains the same, only the VLAN changes.

 

vDS - NIOC - Route based on physical NIC load - 4 NICs Total

dvpg-Management - dvuplink1-4 all active

dvpg-vMotion1 - dvuplink2 active, dvuplink1,3,4 standby

dvpg-vMotion2 - dvuplink3 active, dvuplink1,2,4 standby

dvpg-VMNetwork1 - dvuplink1-4 all active

dvpg-VMNetwork2 - dvuplink1-4 all active

 

 

vDS - NIOC & SIOC - Route based on IP HASH - LACP Enabled - 4 NICs Total

dvpg-NFS - dvuplink1-4 all active

 

If you environment is big enough you should consider having a management cluster where high level servers like vCenter, SSO, SQL live. This Management cluster is still the recommended best practice implementation from VMware. For this cluster you would stick to only using standard virtual switches for management to make it the most simple configuration. This will help in the event of a cold start and/or major maintenance tasks. If you have a management cluster then the risks associated with having management portgroups on a vDS are drastically reduced.

 

Cheers,

Paul

Re: How to shrink OS in vsphere 5.1

$
0
0

I am running out of disk space in my Windows 8 instance. I just tried changing the provisioned size in the win 8 hard drive settings but its not increasing the size inside of win 8.

How to setup a alarm when a storage path become dead?

$
0
0

Hello all,

 

I found some storage path dead sometimes in vcenter. The esxi server have two HBA card, each one connecting a SAN switch seperately. The SAN storage have two SP. So for two storage arrays, there are 8 storage path for one esxi host. 

 

My question is:

1. How to setup a alarm when a storage path (pls note I mean a path, no the storage) become dead.

2. The state of a storage path maybe standby or active, what the difference between them. Does it mean standby path will never active if the primary storage SP don't cutover to secondary SP?

 

Very thanks.

 

Barry

Re: Constant NetBIOS Name Service query/refresh for Windows 7 VM

$
0
0

Hi Arion,

 

Thanks for your support. I still could not find NSNB query/refresh packets destinated to device that starts with vmware_XX  on my Mac.Which Fusion version are you using? Judging from the packet, it seems your Mad owns ip address 172.20.204.12, and 172.20.204.x should be allocated to your NAT VM? Does your windows 7 network work properly? Would you mind describe your network setup on your Mac and your windows 7 VM? Thanks you very much. 

Viewing all 202721 articles
Browse latest View live




Latest Images