Using a USB dongle on a virtual machine in a HA cluster

I need to install software on a virtual machine in ESX 4.0 cluster, which requires a USB dongle to be fixed in order to run in non-evaluation mode. I just came across a product called AnywhereUSB which seems to be supported by VMware. Can anyone tell if they used this product, it's all good and I'm still going to be able to have this quick vMotioning of VMS, as is currently?

> I'll still be able to have this quick vMotioning of VMS, as it is currently?

Yes. You will be able to VMotion VM with USB over IP solution.

---

MCSA, MCTS Hyper-V, VCP 3/4, VMware vExpert

http://blog.vadmin.ru

Tags: VMware

Similar Questions

  • Get use of the resources of all virtual machines in a cluster

    Hello

    I have developed a measure of capacity management report that collects all the use of the resources of the virtual machines in a datacenter. The function that collects it looks like this:

    def hostMemoryConsumed =]

    def memoryConsumed = 0.0f

    def memoryGranted = 0.0f

    VMs. each() {}

    VM->

    try {}

    memoryConsumed += vm.host.memory.consumed.current.average / 1024.0f<----- how="" to="" do="" this="" to="" get="" from="">

    memoryGranted += vm.host.memory.capacity.current.average / 1024.0f

    }

    {} catch (NullPointerException e)

    }

    VMS is a function of type parameter VMS VMW

    The works above for virtual machines in the data center, but I need it to be after cluster. I can find a cluster of virtual machines, but I'm having trouble with referring to specific values for example consumed memory and capacity.

    If I change the type parameter: VMW Cluster how the metric reference would look like (see the try {})?

    I don't think that a query will help me.

    Thanks in advance

    Erik Alm

    If you want to do for a cluster, you can just get the list of virtual machines in a cluster of first and passing in your script.  If you have a function for a VMWCluster you can add a parameter for "vmwCluster" that is underneath and it should give you a table (topologyObjects) that has all the virtual machines in the cluster.

    QS = server.get ("QueryService") / / query Service

    tquery = qs.createStatement("!) (' VMWVirtualMachine where esxServer.parent.name = "+" ' "+ vmwCluster +" "" ") .setQueryTopologyObjects (true);

    topologyObjects = qs.executeStatement (tquery) .getTopologyObjects)

  • Can I use the same windows on my virtual machine?

    I had windows pre-installed in my dell laptop (Latitude E6420). I did not have the cd key but I extracted using a program called Magical jelly bean key finder. Now, I have the following information on my windows installation

    Windows 7 Professional Service Pack 1
    Product no.: XXXXXXXX
    Installed from media "OEM."
    Product ID: XXXXX-OEM-XXXXXXXX
    CD Key: XXXXXXXXXXXXXXXXXXXXXXXX
    Computer name: XXXXX
    Registered owner: XXXXX
    Registered organization: Microsoft
    Now, I want to install linux on my machine and use the current windows in a virtual machine inside the linux host. Is is possible if I completely uninstall this windows of my computer and reinstall the virtual machine with the same key?
    I'm not very familiar with this also can someone guide me what are the steps I have to take if this is possible.

    Hi Andre,

    Thank you for your answer, but this does not completely answer my question. I also read that OEM installation does not install the same windows on another machine (virtual machine is like different machine even if I do this on the same machine) and installation of the mine is OEM type.

    More important still, how install windows in the virtual environment? If I format the computer and install linux, in addition to this install virualbox and install inside windows that use the cd - key and it will work. ? I doubt it because the windows is already activated in this machine.

    The extract of the contract (EULA) for Windows 7 and applies to the retail and OEM of Windows 7 versions. So, Yes, you can reinstall it in a Virtual Machine.

    Yes, you will need to format the machine under Linux, then reinstall Windows 7 in a computer program virtual suitable as Oracle Virtual Box 4.2, VMWare Player 5.0 or VMWare Workstation. You can then use the product key located on the COA sticker to reactivate the license.

  • Issues FTP using the USB Dongle - solution?

    Hi guys,.

    I just got a (Vodafone UK) USB dongle and connect online in this way ok - the problem is that Dreamweaver doesn't seem to work with this mode of ftp transfer using a USB dongle.

    When I try to edit a page on a Web site, this page goes haywire and become full of gibberish along the lines of:

    «op§šdn.0 'Ö ' 0' $ai.k4tai < |'» # »... ETC. ETC........................."

    Any ideas why or how do to solve this problem?

    Thank you!

    Now, I found the solution. For reference:

    It seems to be a problem of Vodafone software. To overcome it, do not connect the internet using the shortcut of Vodafone, to place on your desktop, go to the windows start menu > Connect To > and select Vodafone Mobile Connect. If you connect this way, there seems to be no problem of ftp when using Dreamweaver.

  • How virtual machines in a particular cluster WaitForUpdates?

    I use VMWare VSphere WS SDK in Python using the customer of the foam. I want to wait for the changes made to the virtual machines. I am especially interested in virtual machines in a specific cluster. Is it possible in the propertyfilterspec to say that? I tried to place the reference to managed object of the cluster in the ObjectSpec with nothing doesn't. Is that all that I'm missing?


    Relevant code is:


    object_spec = client_factory.create('ns0:ObjectSpec')

    object_spec.obj = clu_mor

    object_spec. Skip = False

    object_spec.selectSet = build_recursive_traversal_spec (client_factory)

    def build_selection_spec (client_factory, name):

    "" 'Built the specification of selection.' "" » »

    sel_spec = client_factory.create('ns0:SelectionSpec')

    sel_spec. Name = name

    return sel_spec

    def build_traversal_spec (client_factory, spec_type, name, path, jumping,

    select_set):

    "" "Constructed the traversal spec object." "" » »

    traversal_spec = client_factory.create('ns0:TraversalSpec')

    traversal_spec. Name = name

    traversal_spec.type = spec_type

    traversal_spec. Path = path

    traversal_spec. Skip = skip

    traversal_spec.selectSet = select_set

    return traversal_spec

    def build_recursive_traversal_spec (client_factory):

    """

    Built the Spec of recursive route to navigate the managed object

    hierarchy of objects.

    """

    visit_folders_select_spec = build_selection_spec (client_factory,

    "visitFolders")

    # To get to data center hostFolder

    dc_to_hf = build_traversal_spec (client_factory, "dc_to_hf", "Center",

    "hostFolder", False,

    [visit_folders_select_spec])

    # To get to data center vmFolder

    dc_to_vmf = build_traversal_spec (client_factory, "dc_to_vmf", "Center",

    "vmFolder", False,

    [visit_folders_select_spec])

    # To get the virtual machine host system

    h_to_vm = build_traversal_spec (client_factory, "h_to_vm", "HostSystem",

    "vm", False,

    [visit_folders_select_spec])

    # To join in since datacenter

    dc_to_nwf = build_traversal_spec (client_factory, "dc_to_nwf", "Center",

    "Chez", False,

    [visit_folders_select_spec])

    # To get the host system to calculate the resources

    cr_to_h = build_traversal_spec (client_factory, "cr_to_h",

    "ComputeResource", "host", False, [])

    # To get the data to compute resources store

    cr_to_ds = build_traversal_spec (client_factory, "cr_to_ds",

    "ComputeResource", "datastore", False, [])

    rp_to_rp_select_spec = build_selection_spec (client_factory, "rp_to_rp")

    rp_to_vm_select_spec = build_selection_spec (client_factory, "rp_to_vm")

    # To make the list of resources to calculate resources

    cr_to_rp = build_traversal_spec (client_factory, "cr_to_rp",

    "ComputeResource', 'resourcePool", False,

    [rp_to_rp_select_spec, rp_to_vm_select_spec])

    # To get to the pool of res child from the pool of res parent

    rp_to_rp = build_traversal_spec (client_factory, "rp_to_rp", "ResourcePool",

    "resourcePool", False,

    [rp_to_rp_select_spec, rp_to_vm_select_spec])

    # To go to the Virtual Machine from the list of resources

    rp_to_vm = build_traversal_spec (client_factory, "rp_to_vm", "ResourcePool",

    "vm", False,

    [rp_to_rp_select_spec, rp_to_vm_select_spec])

    # Download the varied route specification that deals with objects to

    # be sought in the folder root

    traversal_spec = build_traversal_spec (client_factory, "visitFolders",

    "File", "childEntity", False,

    [visit_folders_select_spec, dc_to_hf,

    dc_to_vmf, dc_to_nwf, cr_to_ds, cr_to_h, cr_to_rp,

    rp_to_rp, h_to_vm, rp_to_vm])

    return traversal_spec

    @stumpr only a propertycollector gives you an update of the rite of changes? Can I use ContainerView to wait for updates to any virtual machine in a cluster?

    @Bernard , thanks for your response. I thought about her a few days back. In the case where another Tomb by chance on this, here's the python code that I wrote for the creation of the specification of the crossing:

    def build_recursive_traversal_spec (client_factory):

    #Recurse through all ResourcePools

    rp_to_rp = client_factory.create('ns0:TraversalSpec')

    rp_to_rp. Name = "rpToRp".

    rp_to_rp.Type = "ResourcePool.

    rp_to_rp. Path = "resourcePool.

    rp_to_rp. Skip = False

    rp_to_vm = client_factory.create('ns0:TraversalSpec')

    rp_to_vm. Name = "rpToVm".

    rp_to_vm.Type = "ResourcePool.

    rp_to_vm. Path = "vm".

    rp_to_vm. Skip = False

    spec_array_resource_pool = [client_factory.create('ns0:SelectionSpec'),

    client_factory. Create('ns0:SelectionSpec')]

    spec_array_resource_pool [0] .name = "rpToRp".

    spec_array_resource_pool [1] .name = "rpToVm".

    rp_to_rp.selectSet = spec_array_resource_pool

    #Traversal by the branch in the pool resource

    cr_to_rp = client_factory.create('ns0:TraversalSpec')

    cr_to_rp. Name = "crToRp".

    cr_to_rp.Type = "ComputeResource.

    cr_to_rp. Path = "resourcePool.

    cr_to_rp. Skip = False

    spec_array_computer_resource = [client_factory.create('ns0:SelectionSpec'),

    client_factory. Create('ns0:SelectionSpec')]

    spec_array_computer_resource [0] .name = "rpToRp".

    spec_array_computer_resource [1] .name = "rpToVm".

    cr_to_rp.selectSet = spec_array_computer_resource

    #Traversal branch host

    cr_to_h = client_factory.create('ns0:TraversalSpec')

    cr_to_h.name = "crToH".

    cr_to_h.Type = "ComputeResource.

    cr_to_h.path = 'to host '.

    cr_to_h.skip = False

    #Traversal hostFolder branch

    dc_to_hf = client_factory.create('ns0:TraversalSpec')

    dc_to_hf. Name = "dcToHf".

    dc_to_hf.type = 'Center '.

    dc_to_hf. Path = "hostFolder".

    dc_to_hf. Skip = False

    spec_array_datacenter_host = [client_factory.create('ns0:SelectionSpec')]

    spec_array_datacenter_host [0] .name = "visitFolders".

    dc_to_hf.selectSet = spec_array_datacenter_host

    #Traversal vmFolder branch

    dc_to_vmf = client_factory.create('ns0:TraversalSpec')

    dc_to_vmf. Name = "dcToVmf".

    dc_to_vmf.type = 'Center '.

    dc_to_vmf. Path = "vmFolder".

    dc_to_vmf. Skip = False

    spec_array_datacenter_vm = [client_factory.create('ns0:SelectionSpec')]

    spec_array_datacenter_vm [0] .name = "visitFolders".

    dc_to_vmf.selectSet = spec_array_datacenter_vm

    #Traversal through branch of data store

    dc_to_ds = client_factory.create('ns0:TraversalSpec')

    dc_to_ds. Name = "dcToDs".

    dc_to_ds.type = 'Center '.

    dc_to_ds. Path = "data store".

    dc_to_ds. Skip = False

    spec_array_datacenter_ds = [client_factory.create('ns0:SelectionSpec')]

    spec_array_datacenter_ds [0] .name = "visitFolders".

    dc_to_ds.selectSet = spec_array_datacenter_ds

    #Recurse through all hosts

    h_to_vm = client_factory.create('ns0:TraversalSpec')

    h_to_vm. Name = "hToVm".

    h_to_vm.Type = "HostSystem.

    h_to_vm. Path = "vm".

    h_to_vm. Skip = False

    spec_array_host_vm = [client_factory.create('ns0:SelectionSpec')]

    spec_array_host_vm [0] .name = "visitFolders".

    h_to_vm.selectSet = spec_array_host_vm

    #Recurse through all data warehouses

    ds_to_vm = client_factory.create('ns0:TraversalSpec')

    ds_to_vm. Name = "dsToVm".

    ds_to_vm.Type = "data store".

    ds_to_vm. Path = "vm".

    ds_to_vm. Skip = False

    spec_array_datastore_vm = [client_factory.create('ns0:SelectionSpec')]

    spec_array_datastore_vm [0] .name = "visitFolders".

    ds_to_vm.selectSet = spec_array_datastore_vm

    #Recurse records

    visit_folders = client_factory.create('ns0:TraversalSpec')

    visit_folders. Name = "visitFolders".

    visit_folders.type = 'folder '.

    visit_folders. Path = "childEntity".

    visit_folders. Skip = False

    spec_array_visit_folders = [client_factory.create('ns0:SelectionSpec'),

    client_factory. Create('ns0:SelectionSpec'),

    client_factory. Create('ns0:SelectionSpec'),

    client_factory. Create('ns0:SelectionSpec'),

    client_factory. Create('ns0:SelectionSpec'),

    client_factory. Create('ns0:SelectionSpec'),

    client_factory. Create('ns0:SelectionSpec'),

    client_factory. Create('ns0:SelectionSpec'),

    client_factory. Create('ns0:SelectionSpec')]

    spec_array_visit_folders [0] .name = "visitFolders".

    spec_array_visit_folders [1] .name = "dcToHf".

    spec_array_visit_folders [2] .name = "dcToVmf".

    spec_array_visit_folders [3] .name = "crToH".

    spec_array_visit_folders [4] .name = "crToRp".

    spec_array_visit_folders [5] .name = "dcToDs".

    spec_array_visit_folders [6] .name = "hToVm".

    spec_array_visit_folders [7] .name = "dsToVm".

    spec_array_visit_folders [8] .name = "rpToVm".

    visit_folders.selectSet = spec_array_visit_folders

    #Add all here

    spec_array = [visit_folders, dc_to_vmf, dc_to_ds, dc_to_hf, cr_to_h,

    cr_to_rp, rp_to_rp, h_to_vm, ds_to_vm, rp_to_vm]

    return spec_array

  • What windows key you use to activate one of the virtual machines on my Hyper-V on Windows Server 2012 R2 Std

    I installed my Hyper-V role and now wants to activate one of the virtual machines, but the key is not recognized.  Should what key I use?

    Hello

    Your question is beyond the scope of this community.

    I suggest that repost you in the Forum of Hyper-V on Technet.

    https://social.technet.Microsoft.com/forums/WindowsServer/en-us/home?Forum=winserverhyperv

    Or:

    TechNet Server forums.

    http://social.technet.Microsoft.com/forums/WindowsServer/en-us/home?category=WindowsServer

    See you soon.

  • Acer Iconia B - Can I use a USB Dongle?

    Hello

    Please let me know if I can use a USB key/Dongle USB in "Micro USB 2.0 port" for the transfer of data.

    The information I have on the Iconia B1 - A71 said that the microUSB port is not a hub and port for charging and data cable connection.  You should be able to do the data transfer with the port of another computer.

  • Unable to connect to use Windows XP mode on a Virtual Machine, cannot share files between the Virtual Machine and host

    Because of the need to run some XP programs, I ordered Win7 Pro and installed a Virtual Machine with XP Mode.

    Managed to get it going somehow, but does not connect to my home network (can't see any other computers, which seems to be common with the host of Win 7, but here, I managed to install quick links to other computers - they will not work in XP Mode), even if the Internet connection is working perfectly.

    In addition, I can't find a way to share files with the host country, drive C appears to be different from that of the hosts with no common points (where it is currently stored beats me).

    I can access a USB key, but only at a price to make it unavailable to the host and the attempt to release his capture when running XP Mode failed.

    Hello

    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the TechNet Forums.

    http://social.technet.Microsoft.com/forums/en-us/w7itpronetworking/threads

  • Access to the BlackBerry through the USB port on the virtual machine VMWare

    I have my development environment configuration in VMWare virtual machine, and I have no problems of deployment of BlackBerry applications on a simulator that runs as another virtual machine. The problem starts when I try deploying to the device via the USB port. The address is assigned when the mode of development on the device is not accessible from the VM, but only from my host, who do me any good, since as I said my IDE is in the virtual machine. A way to solve this problem? I can still deploy to the device via wi - fi (which is btw access via different ip - one given by the network) by this can sometimes be slow depending on the strength of the signal, etc, so I prefer to be able to deploy via the USB port.

    Just in case anyone has the same problem, how to activate must, VMWare Player click on the USB icon (to the right) and choose to disconnect from the host. Connecting the USB port at the prompt. Stupid...

  • Is there a way to change the connection string to the database by using the command line on the virtual machine?

    Hi, I use 1.5 space Horizon

    can someone help me by telling me where I can change the connection string for the database on the virtual machine itself.

    I was away, and our stuff has been migrated databases to another server. Now my horizon does not connect because it can not find the database. I can either on the hwconfigurator.xxx.com.

    Thank you

    What do you see when you go to https://hwconfigurator.xxx.com?

    You can try to change this property in /usr/local/horizon/conf/runtime-config.properties on your service - will (s) and the server restart of tc by using the command "/etc/init.d/horizon-frontend restart".

    datastore. JDBC. URL = jdbc:PostgreSQL: / //saas? = stringtype unspecified

  • Use of memory in the guest virtual machines

    Hello

    I don't have any background on VMware technology, but we are using a facility of dynamic cloud based on vCloud Director to the company where I work.

    The group that operates the server publishes the offer with a 'pay per use model"of service.

    This is true for the CPU resources, as we pay only what we use in the month. But in my opinion, it does not for the use of the RAM.

    We have Linux VMs that allocate a 4 GB of RAM 'physical' and our monthly bills show that the RAM usage is at 100% for all the month. But when you look at the tools of memory for the virtual machine, you can see that most of the time 50% or even less is used by the guest operating system process.

    This means from a user perspective the RAM price per month should be half of what we are responsible now. Ask operators on the 'question', we always get the answer that the use of the RAM is not dynamic and we need to pay for the use of 100% from the point of view of the server host.

    Could someone share some light on this subject? Is there really no way to make use of the dynamic RAM as the CPU usage?

    Thank you

    Michael

    Evening,

    As a service provider, I'll let you in on the secret:

    It depends on

    vCloud takes care of three models of default allocation.  Your provide may use other

    -Pay for what you use. -pay as you use

    -Allowance - you get resources, but can burst more

    -Booking - you get allocated resources and is

    Chargeback depends on model (in out of the box chargeback... your provider might have something custom)

    Pay as you use - charged on the basis of the resources used

    Allowance - remuneration based on allocation and additional for burst

    Allocate pay based on booking-

    There in the last two models really no way to load except full allowance (i.e. 100% cpu and RAM)

    Statement, I think you have something along the lines of the compensation you are using you mixed with a price system vendor.

    From my experience the resource more used in ESXi clusters in the RAM.  That's really what I buy in clusters of resource... I always need more RAM.  I need no more CPU. In addition, distribution of the CPU to vcloud is made via Ghz is not CPU.   RAM is allocated by GB.   So those set up and I think you suppliers is betting that they will always have to RAM so they charge based on usage not allocation.  While CPU, they have tons while they charge by usage.

    Really, it's just my thoughts... What can charge you on:

    -Ghz processor

    -GB of RAM

    -GB of storage

    How can recharge you:

    -Used

    -Allocated

    So bottom line... they can charge by opportunity they choose not too...

    It will be useful,

    J

  • Make a VM use a NIC and all other virtual machines use another?

    Hello, I'm trying to understand how do a virtual computer using a NETWORK card, while all my other reviews VMs share another. Having a hard time to identify ways to implement. Someone knows how to do this?

    I've attached a screenshot of how my network is currently configured, if that helps.

    Thank you

    C

    You can create another group of ports say "VM network 2" and set the grouping of NETWORK adapters active vmnic1 and vmnic0 standby (in front of your current setting). Then add this virtual machine to the network of computer virtual 2. This allows switching between the two network cards. If you want to have the assistance of a NETWORK card all the time, just put a active and other "unused" in a single port and opposite group in the other group, or at the level of the switch. Port group strategy note may substitute the switch level policy.

  • Use the diskette of esxi for virtual machines

    Hello
    I would like to set up a lab and I have hp g6 server but just with a single 600 GB sas disk
    is it possible to install esxi on it and also use it as a storage device for virtual machines on?
    I know that I can install esxi on a cool drive but if what I've said, it's possible I prefer to use that
    Thank you very much

    It's true.

  • Using fault tolerant instead of a virtual machine in standby

    Hi all

    I just read a little on the feet.  My company offers a SaaS solution to customers.  We are pretty well everything virtual.  For this simple example, I will say that we have a dedicated server set up for our application we offer to customers.  If something were to go wrong with the application or server (software, not hardware), we have a machine of relief that we can move to in an emergency.  This requires a manual switch, change the IPs, DNS change, change firewall policies, etc. etc.

    I was wondering if we could use FT to handle this.  I understand that FT does not detect a failure, because it of nothing wrong with the material, but is it possible to 'push a button' and start using the copy of the virtual machine?

    I also met HA tracking app.  However, it seems that this option restarts just the virtual machine, which is certainly not what we are looking for.  I may be wrong on the restart, however.

    Any other suggestions or information?

    Thank you!

    Yes, if you only use one vCPU it will work the way that you season - keep in mind the secondary VM is mirrored all that primary VM does if the cause is due to a change to data in the primary VM it will be mirrored in the seodnary VM

  • CLI can be used to assign AD accounts to virtual machines

    Hi, I am interested in the possibility to use the CLI to assign accounts Active Directory for VMs. currently there are 10 virtual machines created from a template and there are 22:00. 1 AD account is assigned to each of the virtual machines. They are used for training purposes. Virtual machines are then removed and repeat the procedure. Is it possible that I can attribute the AD account name to a particular virtual machine using the command line?

    Thank you

    You can use the new-vipermission to assign permissions to a virtual machine.

    new-vipermission -entity (get-vm SQL04) -principal "Mishchenko\dave.mishchenko" -Role "Admin"
    

    Dave

    VMware communities user moderator

    Now available - vSphere Quick Start Guide

    You have a system or a PCI with VMDirectPath?  Submit your specifications to Officieux VMDirectPath HCL.

Maybe you are looking for