Can we Manage SCVMM Virtual Machine using App Controller

Hi All,
        Today I have configured one APP controller 2012 R2, already I have a SCVMM 2012 R2 environment which is managing 10 Standalone Hyper-V Host with 50 VM's.
Question: Is that Possible to Manage the VM's (not part of cloud) in App COntroller, If yes kindly suggest the steps to configure

Hi all,
        I have created one Clod container, by chance can I move the VM's belongs to Hyper-V contained to CLoud container and Manger it thro AC.

Similar Messages

  • Can the boot camp partition be resized once windows is installed and running as virtual machine using vm fusion ware?

    I have macbook air partitioned 505/50 and running OSX and win 7 side by side as virtual machines using vm fusion.  Can the partition size be changed without starting over?

    Very helpful.  I started with vm ware to create a pseudo drive but could not import win 7 over home network.  mac has no immediate way to connect to network without adapter, and has no cdrom.  So i used boot camp to create partition, then made a bootable win7 iso file on a memory stick using win 7 usb/cdrom download tool from microsoft, and rEFIT to get mac to boot from the mem stick into the dos partition.  Then i ran vm fusion to import the win 7 partition as a virtual machine.  OSx and win 7 run side by side.
    Seems from what you say that sizing cannot be accomplished without deleting partition and starting over.  If I start over and just run vm fusion to create he win7 virtual machine, not sure how I would bet the minimum win 7 os into the ac.  Perhaps vm will boot from the mem stick using refit.  Do you know?

  • Can i install VS 2013 in my Virtual Machine with Windows 8.1 and work for Mobile Development,Mobile Emulator can work in my Virtual Machine ?

    I have a Virtual Machine with Windows 8.1 OS and 4gb RAM, 200gb Disk.
    I want to develop apps for Windows Mobile 8.1 with VS 2013 Update 4, Mobile Emulators can work in my Virtual Machine, bcz i am getting bellow error.
    Windows Phone Emulator is unable to verify that the virtual machine is running:
    Something happend while starting a virtual machine:'Emulator 8.1 WVGA 4 inch 512MB.APPUSER' failed to start.(Virtual machine ID xxxxxx-xxxxx-xxxx-xxxx-xxxxxxx)
    The Virtual Machine Management Service failed to start the virtual machine 'Emulator 8.1 WVGA 4inch 512MB.appuser' because one of the Hyper-V components is not running (Virtual machine ID xxxx-xxxxx-xxxx-xxxx-xxxx).

    No you cannot do that.  You need a physical machine that supports Hyper-V
    Jeff Sanders (MSFT)
    @jsandersrocks - Windows Store Developer Solutions
    @WSDevSol
    Getting Started With Windows Azure Mobile Services development?
    Click here
    Getting Started With Windows Phone or Store app development?
    Click here
    My Team Blog: Windows Store & Phone Developer Solutions
    My Blog: Http Client Protocol Issues (and other fun stuff I support)

  • Can  solaris work on virtual machine ?

    i downloaded the iso files of solaris 10 for x86.
    i used to check my cd first on VMware but unfortunately i get always the message that no bootable cd.
    can solaris work in virtual machine environment?
    thank you

    can solaris work in virtual machine environment?The following URL says Solaris can be run as guest OS under VMware.
    http://pubs.vmware.com/guestnotes/wwhelp/wwhimpl/common/html/wwhelp.htm?context=guestos&file=guestos_solaris10.html
    i get always the message that no bootable cd.You need to burn it as bootable CD. Please check the following page for instructions:
    http://www.sun.com/software/solaris/solaris-express/express_singleinstructions.xml

  • Having trouble with creation of a cloud service with multiple virtual machines using java sdk.

    I am creating a cloud service on azure with 2 virtual machines using java sdk API. Service created successfully.
    My input endpoint details are as follows.
    INPUT ENDPOINTS
    Head : 191.238.144.47:2400
    Head : 191.238.144.47:22
    Node0 : 191.238.144.47:43211
    For Head instance port 2400 is for HTTPS and port 22 is for SSH and for Node0 instance port 43211 is for SSH.
    But I am having problem with doing a ssh on Head instance. Sometimes it works sometimes doesn't. Same problem with HTTPS also.
    I have some application running over there but when i try to access it thru browser sometimes it works but most of the time doesn't. When I restart the instances from azure portal, its works after
    that(not always but most of the time). 
    Now I am confused what is going on there. I am creating cloud service and virtual machines using java sdk and setting input endpoints also. After creation of all instances i restart every instance programmatically .
    I am not sure whether restart is required or not. It must be something to do with input endpoints only but not able to get the right thing i guess. When i do the same thing thru azure portal(creation of cloud service with virtual machines and setting up input
    end points) everything works fine but not achieving the result when implementing it by java sdk API. Please help me.

    HI Nithin,
    Thanks for your reply. I am setting the endpoints after creating my instances using update call. Here's the code snippet.
    AzureService aServ = new AzureService(session);
     if(aServ.checkNameAvailability(clusterName)) {
               aServ.createHostedService(clusterName, "dbX cluster");         
             // Creating head instance
             aServ.createHead(clusterName, imgName, headType, userName, pswd);  
            // Setting end points for head node
             String name = "ssh";
             int port = 22;
             aServ.updateVMInputEndpoint(clusterName, "Head", name, port);
             // Restarting head instance
             aServ.restartVM(clusterName, "Head");
           String roleName = "Node";
           String tmpRoleName = "";
           for(int i=0; i<noi; i++) {
                      port = 43210+(i+1);
                      tmpRoleName = roleName + i;
                   // Creating node instance
                    aServ.createVM(clusterName, tmpRoleName, imgName, nodeType, userName, pswd);
                  // Setting end points for node instance
                   aServ.updateVMInputEndpoint(clusterName, tmpRoleName, name, port);
                  // Restarting node instance
                 aServ.restartVM(clusterName, tmpRoleName);
          // Method to update the input endpoint details 
          public void updateVMInputEndpoint(String clusterName, String vmName, String name, int port)
            throws Exception {
                    VirtualMachineGetResponse resp = computeManagementClient.getVirtualMachinesOperations().
                                                            get(clusterName, clusterName, vmName);
                    VirtualMachineUpdateParameters updateParameters = new VirtualMachineUpdateParameters();
                    //get the configuration list
                    ArrayList<ConfigurationSet> configlist = resp.getConfigurationSets();
                    //get inputendpoint list and update it
                    ArrayList<InputEndpoint> endpointlist = configlist.get(0).getInputEndpoints();
                    InputEndpoint inputEndpoint = new InputEndpoint();
                    inputEndpoint.setEnableDirectServerReturn(false);
                    inputEndpoint.setPort(port);
                    inputEndpoint.setLocalPort(port);
                    inputEndpoint.setName(name);
                    inputEndpoint.setProtocol(InputEndpointTransportProtocol.TCP);
                    endpointlist.add(inputEndpoint);
                    // Open port for https on head node
                    if(vmName.equals("Head")) {
                            inputEndpoint = new InputEndpoint();
                            inputEndpoint.setEnableDirectServerReturn(false);
                            inputEndpoint.setPort(2400);
                            inputEndpoint.setLocalPort(2400);
                            inputEndpoint.setName("https");
                            inputEndpoint.setProtocol(InputEndpointTransportProtocol.TCP);
                            endpointlist.add(inputEndpoint);
                    updateParameters.setConfigurationSets(configlist);
                    //required for update
                    OSVirtualHardDisk osVirtualHardDisk = resp.getOSVirtualHardDisk();
                    updateParameters.setOSVirtualHardDisk(osVirtualHardDisk);
                    updateParameters.setRoleName(resp.getRoleName());
                    OperationResponse updtResp = computeManagementClient.getVirtualMachinesOperations().update(clusterName, clusterName, resp.getRoleName(), updateParameters);
    And every time i am creating a new cloud service along with head and node instances. Region is "South Central US".
    I am setting ProvisionGuestAgent field to true at instance creation time. Thank you.

  • Can I Manage virtual machines using SCCM? What about Amazon ec2 instances?

    Hi All,
    As part of my lab environment, I would like to discover and manage virtual machines within ESXi platform and a few on Hyper-V. As part of this, 
    1] Do we need SC-VMM to create/discover/manage virtual machines or can this be done by using just SCCM 2012 module?
    2] Does SCCM provide any connectors to public cloud services (ex: Amazon EC2 or Google Cloud services)? Can this be done using SCCM? 
    Any help on this would be appreciated. thanks

    Thanks Jason.
    A few follow up questions just to make sure I understand you correctly:
    a] Statement: I understand SCCM can manage OS within any VM (I just realized my set up has discovered 2 VM's running Win 2008 OS via AD discovery method). My confusion began after going thru SC-VMM docs. I assumed, once you have SC-VMM set up, it will discover/manage
    either ESXi servers or Citrix or other vendor hypervisors and then discover VM's within the hypervisors. But as you said, SCCM can manage OS within any VM.
    b] Q: my sccm set up is part of domain 'A' and its discovering systems/users as part of domain 'A'. Is there a way to discover systems as part of domain 'B'? When I look into 'discovery methods' -> Active directory system discovery -> Add a new container
    -> path -> select a new container -> it selects only domain 'A'
    As a result I'm not able to add a secondary domain for system discovery. IS this how its supposed to be? Discovery runs only within one domain? (or) am I missing something here?
    c] When you said 'Yes, I do think (I'm not familiar with all things VMM though) that there is a connector to EC2', did you mean a connector from SCCM or a connector from VMM component?
    thanks again for all the help.

  • Can't create new virtual machine with Virt-manager

    After going through the whole setup, I would get this error through backtrace:
    File "/usr/share/virt-manager/virtManager/netlist.py", line 346, in validate_network
    netobj.start()
    File "/usr/share/virt-manager/virtManager/network.py", line 104, in start
    self._backend.create()
    File "/usr/lib/python2.7/site-packages/libvirt.py", line 2755, in create
    if ret == -1: raise libvirtError ('virNetworkCreate() failed', net=self)
    libvirtError: Unable to create bridge virbr0: File exists
    Hence, I attempted to follow https://wiki.archlinux.org/index.php/Bridge_with_netctl to set up my network bridge and try again, and I'd still get the same error.
    I also tried to do sudo virt-manager but I'd get:
    ** (virt-manager:16835): WARNING **: Could not open X display
    No protocol specified
    (virt-manager:16835): Gdk-ERROR **: error: XDG_RUNTIME_DIR not set in the environment.
    I want to get KVM working using a gui and so I choice virt-manager, but now I'm stuck and don't know where to go from here.

    Hi Sir,
    Please follow these troubleshooting steps mentioned within the article below :
    http://blogs.technet.com/b/scvmm/archive/2012/08/13/kb-how-to-troubleshoot-the-needs-attention-and-not-responding-host-status-in-system-center-2012-virtual-machine-manager.aspx
    Best Regards,
    Elton Ji
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] .

  • Can't install my printer on Windows virtual machine using  Leopard OS

    Have just installed Leopard and Parrallels software. I cannot install my HP C3180 printer on the virtual windows machine. USB plug and unplug are not recognized and suspect it is because the printer is in use on the Mac OS side. How can I get the same printer to be connected and usable in both MAC and Windows virtual machines?

    I had exactly the same issue as you when I wanted to print from my iMac to a printer that was attached to a Windows 7 machine.
    I found the solution at an Apple Support page, located at "http://support.apple.com/kb/HT3049".
    What really solved my problem was the introduction of the user PASSWORD in the address line, like this:
    smb://user:password@workgroup/server/sharename
    Read the Apple Support page I mentioned carefully to better understand what you will be doing.
    I hope this helps you.

  • Hyper V Manager can on longer manager all virtual machines

    We have this issue have in few client of ours running 2012 or 2012 R2. From time to time those Hyper V base will lose the ability to manage all the virtual machines. There is nothing in Hyper V manager and you can't add itself into the management console.
    Restart the hyper V manager service do nothing for it. the only way we can do is get into each each vms to shut them down and do a  restart on the hyper V base OS. Those affected some are clustered some are just stand alone. 
    Lin Xiang Correct Solutions

    Ive run into this issue on stand alone hyperv hosts and so far, one for one, it affects VMs associated with a virtual switch the management OS is excluded from.  Determine which virtual switch the affected VM or VMs are associated with. Next, in
    Virtual Switch Manager, highlight the correct virtual switch, then check to allow the Management OS to share the network adapter.  Click Apply.   The switch will briefly disconnect and reconnect. This appears to reset the switch and make the
    vm accessible for management.  After the issue is resolved, if needed, you can uncheck the box again to exclude the Mgmt OS from participating on the nic/virtual switch.  I have not found documentation from MS to support this, but it has worked for
    me on many occasions. Hopefully, MS will address this bug at some point. 

  • Can't create a Virtual Machine on new host - Error (2915)

    This error is appearing when a Virtual Machine is created from scratch, or from a template. I've tried all of the recommendations I can find. All updates are in place, VMM reports agents are current, server is "OK". VMM Agent is running. Rebooted
    many times.
    Error (2915)
    The Windows Remote Management (WS-Management) service cannot process the request. The object was not found on the server (xxxxxx).
    WinRM: URL: [http://xxxxx:5985], Verb: [GET], Resource: [http://schemas.microsoft.com/wbem/wsman/1/wmi/root/virtualization/v2/Scvmm_EthernetSwitchPortInternalSettingData?InstanceID=Microsoft:Definition\1f59a509-a6ba-4aba-8504-b29d542d44bb\Default]
    Unknown error (0x80338000)
    Recommended Action
    Ensure that the VMM agent is installed and running. If the error persists, restart the virtualization server (xxxxx) 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.

    Hi Sir,
    Please follow these troubleshooting steps mentioned within the article below :
    http://blogs.technet.com/b/scvmm/archive/2012/08/13/kb-how-to-troubleshoot-the-needs-attention-and-not-responding-host-status-in-system-center-2012-virtual-machine-manager.aspx
    Best Regards,
    Elton Ji
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] .

  • VM Manager on virtual machine - best practice

    I am setting up a server using Oracle VM to limit the number of cpus available to a virtual machine which will be running an Oracle database.
    I have set up a test environment, one Oracle VM Server, and the Oracle VM Manager running on a separate server.
    I have read in this forum that I could create a linux virtual machine on the VM Server, and then install the Oracle VM Manager on that.
    Re: Oracle VM Manager installation
    To create the linux virtual machine, I used the Oracle VM Manager that I have running on a separate server.
    Once I created the linux virtual machine, I installed Oracle VM Manager on it.
    From this point, I hoped to create the virtual machine upon which I will run the Oracle database, but I get the following message:
    OVM-2008 The Server Pool Master (10.36.64.225) has been registered with some other pool, and can not register it again.
    So if running the Oracle VM Manager on a virtual machine on the Oracle VM Server is a good idea, how do I do it?
    Many thanks.
    Paul

    Hi Tommy,
    Thanks for taking the time to reply to my query.
    Unfortunately, things didn't go so well.
    I ran the commands you listed, checking on the status of each VM manager (the original one, running on separate physical linux server, and the one I want to use, running as a VM guest) between each command:
    /opt/ovs-agent-latest/db/db_del.py master
    - this provided no response, and logout/login from both VM managers showed no changes.
    /opt/ovs-agent-latest/db/db_del.py srv
    10.36.64.225 removed.
    - the oraVMmanager now listed as powered off in the original VM manager.
    /opt/ovs-agent-latest/db/db_del.py srvp
    10.36.64.225 removed.
    - no change in VM Managers
    /opt/ovs-agent-latest/db/db_del.py vm
    /OVS/running_pool/28_oraVMmanager removed.
    - no change to both VM Managers and the guest VM is still running.
    /sbin/service ovs-agent restart
    option 2 - guest VM shutdown (28_oraVMmanager)
    I couldn't get the guest VM to restart
    service xendomains start failed saying there is a lockfile:
    /var/lock/subsys/xendomains
    I haven't been able to get past this point other than to re-install and start again.
    Maybe there is another way to do this...
    If I install the VM Server, can I create a linux VM Guest using command line rather than from the VM Manager?
    Once I have a VM guest, I can logon to that, and install the VM Manager.
    Cheers
    paul

  • Upgrade pre-built Oracle Virtual Machine using  Siebel VM template

    Hello
    I'm planning to deploy a Siebel environment for testing purposes using Oracle Virtual Machines templates (http://www.oracle.com/technetwork/server-storage/vm/siebel-092480.html). this template has been made to deploy Siebel CRM SIA 8.1.1.ENU and i need the  8.1.1.7 version with ENU and ESN languages
    My main questions are:
    after complete the Siebel installation using this template (8.1.1 ENU), is it possible to upgrade to 8.1.1.7 version? is it possible to add ESN language?
    thanks and best regards!
    Francisco Ruiz
    Oracle Consulting Mexico
    Edited by: user733897 on 1/03/2013 11:59 AM

    Wilson
    Thanks by kind help, but im still face issues, the log indicates a license error but i already introduce the licenses codes but is still showing the error on login.
    ServerLog     ProcessCreate     1     00000d67513a0900:0     2013-03-08 20:45:59     Created server process (OS pid =      2525     ) for SCCObjMgr_enu
    ServerLog     ProcessCreate     1     00000d67513a0900:0     2013-03-08 20:45:59     Created server process (OS pid =      2542     ) for SMObjMgr_enu
    ServerLog     ProcessExit     1     00000d68513a0900:0     2013-03-08 20:56:35     SvrTblCleanup      2431     SBL-OMS-00103 Process 2431 exited with error - Error %1 initializing the license key
    ServerLog     ProcessCreate     1     00000d67513a0900:0     2013-03-08 20:56:35     Created server process (OS pid =      2656     ) for SvrTblCleanup
    ServerLog     ProcessExit     1     00000d68513a0900:0     2013-03-08 20:56:35     SvrTaskPersist      2432     SBL-OMS-00103 Process 2432 exited with error - Error %1 initializing the license key
    ServerLog     ProcessCreate     1     00000d67513a0900:0     2013-03-08 20:56:35     Created server process (OS pid =      2670     ) for SvrTaskPersist
    Another log file
    2021 2013-03-11 18:00:07 0000-00-00 00:00:00 -0700 00000000 001 ffff 0001 09 SvrTblCleanup 848297986 28037 1101329440 /u01/app/siebel/ses/siebsrvr/enterprises/siebel/siebel811/log/SvrTblCleanup_0809_848297986.log 8.1.1 [21111] ENU
    ObjMgrLicense     Error     1     00000005513e6d85:0     2013-03-11 18:00:07     (dmlicmgr.cpp (133)) SBL-DAT-00171: A license key for this software has expired.
    Please enter a new key to proceed, or contact your system administrator.
    GenericLog     GenericError     1     00000005513e6d85:0     2013-03-11 18:00:07     Object manager error: ([0] A license key for this software has expired.
    Please enter a new key to proceed, or contact your system administrator.(SBL-DAT-00171) (0x7500ab))
    GenericLog     GenericError     1     00000005513e6d85:0     2013-03-11 18:00:07     ( (0) err=2818155 sys=7667883) SBL-OMS-00107: Object manager error: ([0] A license key for this software has expired.
    Please enter a new key to proceed, or contact your system administrator.(SBL-DAT-00171) (0x7500ab))
    GenericLog     GenericError     1     00000005513e6d85:0     2013-03-11 18:00:07     (ccfom.cpp (568) err=2818151 sys=0) SBL-OMS-00103: Error 7667883 initializing the license key
    GenericLog     GenericError     1     00000005513e6d85:0     2013-03-11 18:00:07     (bsvcmgr.cpp (658) err=2818151 sys=0) SBL-OMS-00103: Error 7667883 initializing the license key
    GenericLog     GenericError     1     00000005513e6d85:0     2013-03-11 18:00:07     (smishell.cpp (342) err=2818151 sys=0) SBL-OMS-00103: Error 7667883 initializing the license key
    TaskConfig     TaskCfgParamError     1     00000005513e6d85:0     2013-03-11 18:00:07     ***********Dumping Parameters for the current task (848297986) because of errors**********

  • [SOLVED] KVM Virtual machine using virt-install on a LVM partition

    Hello,
    I am far from an expert, and I am trying to build a virtual machine (debian squeeze) on my Arch 64 bits host. The VM will serve as a server with usual services (http, mail, ftp, media server etc). This is only for my own purpose and I do it as a hobby.I have no obligation to success, and more important I want to understand everything i do. I have some doubts, so why my post here.
    I want to install the VM on a LVM partition.
    -I first create successfully a LVM partition on /dev/sda4
    $fdisk -l /dev/sda
    /dev/sda4 1925115904 2949116309 512000203 8e LVM Linux
    I will install the VM (named "daffodil") on a 200G Logical Volume on groupe vg0
    $ lvcreate –n lv_daffodil –L 200G vg0
    Logical volume “lv_daffodil” created
    Now I need to create the VM. I want to use virt-install IN COMMAND LINE. After days an days of reading (and headache), here is what i think is the correct command :
    virt-install --connect qemu:///system --name=daffodil --ram 8192 --cpu host
    --disk path=/dev/vg0/lv_daffodil,size=200,bus=virtio,sparse=false,format=raw --cdrom /var/lib/libvirt/images/isofiles/debian-6.0.4-amd64-netinst.iso
    --description="daffodil (debian squeeze) - vm guest on host magnolia" --graphics vnc --os-type=linux --os-variant=debiansqueeze
    --network bridge:br0 --video=vga --hvm --accelerate
    So my questions :
    Is the command correct and academic?
    I think size=200 is maybe not needed, as the LV has already be created. Right?
    format=raw seems weird to me and not needed. Right?
    My host has 16G RAM. Shall I put 16 as --ram argument or stay with 8 ?
    How about the filesystem? I want an ext4. Shall I create it on lv_daffodil BEFORE the install or will I do it under the install process when partitioning?
    Any advantage in creating smaller than 200G logical volume, even if I want my VM have enough space (The whole HD is 2T)?
    Not sure about the --accelerate argument
    Any hint for optimization?
    As a n00b ++, will I be able to manage SELinux on my server, as it seems a litle bit tricky?
    what about --noautoconsole argument?
    Thank you for your help and knowledge.
    Last edited by gabx (2012-05-02 10:39:16)

    As I didn't have any answer in one week, I suscribed to [email protected]
    For those of you interested in KVM, find below a script doing excatly the needed job.
    #!/bin/bash
    #created Thursday April 26 2012
    #following Richard W.M.Jones <[email protected]> advices and script
    #this script can be changed according your own need. This one will
    #install a debian VM called daffodil on a LVM partition, with 2 CPU, 8192 RAM
    # Script used to install VMs.
    # You have to lvcreate the disk first!
    # lvcreate -L sizeG -n $name vg_data
    set -e
    name=daffodil
    cpus="--cpu=host --vcpus=2"
    disk="--disk path=/dev/vg0/lv_daffodil"
    location="--cdrom /var/lib/libvirt/images/isofiles/debian-6.0.4-amd64-netinst.iso
    type="--os-type=linux"
    variant="--os-variant=debiansqueeze"
    graphics="--graphics spice"
    bus="virtio"
    network="--network bridge=br0"
    virt-install -n $name -r 8192 \
    $name $cpus $type $variant $disk $location $graphics $bus $network
    To answer to some of my queries in first post:
    no need to give the size as I want to use the full lvm I created first. Virt-install will pick up the size
    the filesystem will be created during install
    CPU amount should be less than the host, as well as CPU numbers.
    --accelerate argument is no more needed
    spice give usually better graphic results than vnc

  • Windows server 2008 r2 virtual machine uses much less memory then it has assigned

    Guys,
    I had a virtual machine with windows 2008 r2 operating system, running sharepoint, on a server where it had 6gb RAM memory assigned.
    Now I bought a new server, which has 32 gb of ram. I moved my virtual machine there, and assigned 24gb of RAM.
    But after I started VM, in Windows Task Manager I see that system uses only about 6.5 GB of RAM assigned. That is not even close to 24gb, which it has available.
    Is there any power shell script or anything else available to increase virtual machine memory usage?
    Thank you. 

    Hi,
    I found a KB similar described with your issue- the Hyper-V host cannot allocate more memory to the virtual machine because there is not enough free disk space to extend the
    memory contents file, more detail symptoms please refer the following KB:
    Dynamic Memory allocation in a Virtual Machine does not change although there is available memory on the host
    http://support.microsoft.com/kb/2504962/en-us
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Can't Power on Virtual Machine

    after import and approve the Virtual Machine Images, i can't power on the virtual machine, after i click the power on button in Ovm manager web page,
    it indiates as following in log::
    PowerOn VM: OVM_EL4U5_X86_HVM_10GB failed:<Exception: return=>failed:<Exception: xm create '/OVS/running_pool/OVM_EL4U5_X86_HVM_10GB/vm.cfg'=>Error: The device "hda" is already defined >> Jul 13, 2008 10:20:44 PM Error
    following are the vm.cfg content:
    [root@ovm-test1 OVM_EL4U5_X86_HVM_10GB]# more vm.cfg
    acpi = 1
    apic = 1
    builder = 'hvm'
    disk = ['file:/OVS/running_pool/OVM_EL4U5_X86_HVM_10GB/system.img,hda,w',
    'file:/OVS/running_pool/OVM_EL4U5_X86_HVM_10GB/oracle10g_x86.img,hda,w',
    ',hdc:cdrom,r',
    kernel = '/usr/lib/xen/boot/hvmloader'
    memory = '1024'
    name = 'OVM_EL4U5_X86_HVM_10GB'
    on_crash = 'restart'
    on_reboot = 'restart'
    pae = 1
    serial = 'pty'
    vcpus = 2
    vif = ['mac=00:1A:A0:B8:EF:F3']
    vnc = 1
    vncconsole = 1
    vnclisten = '0.0.0.0'
    vncpasswd = '******'
    vncunused = 1
    [root@ovm-test1 OVM_EL4U5_X86_HVM_10GB]#
    following are 2 img files.
    [root@ovm-test1 OVM_EL4U5_X86_HVM_10GB]# ls -l
    total 28636201
    -rw-r--r-- 1 root root 15364822528 Mar 24 16:24 oracle10g_x86.img
    -rw-r--r-- 1 root root 78 Feb 19 11:42 README
    -rw-r--r-- 1 root root 59 Mar 24 16:26 README.oracle
    -rwxr-xr-x 1 root root 13958643713 Feb 19 12:49 system.img
    -rw-r--r-- 1 root root 477 Jul 14 09:48 vm.cfg
    -rw-r--r-- 1 root root 0 Jul 14 09:48 vm.cfg.lck
    -rw-r--r-- 1 root root 459 Jul 14 07:19 vm.cfg.old
    -rw-r--r-- 1 root root 536 Jul 14 07:59 vm.cfg.orig
    thanks a lot!

    Hi
    Just alter the device from hda to hdb
    eg
    from
    disk = ['file:/OVS/running_pool/OVM_EL4U5_X86_HVM_10GB/system.img,hda,w',
    'file:/OVS/running_pool/OVM_EL4U5_X86_HVM_10GB/oracle10g_x86.img,hda,w',
    ',hdc:cdrom,r'......
    to
    disk = ['file:/OVS/running_pool/OVM_EL4U5_X86_HVM_10GB/system.img,hda,w',
    'file:/OVS/running_pool/OVM_EL4U5_X86_HVM_10GB/oracle10g_x86.img,hba,w',
    ',hdc:cdrom,r' .......
    this way you mount you system image root volume as a device [hda]
    and your oracle10g image as a device [hdb]
    ta

Maybe you are looking for

  • Having trouble installing Radeon 7500 into K7T266 Pro

    I am having all sorts of problems switching from my nVidia TNT 2 (MaxiGamer Cougar) video card to my new Radeon 7500.  I am running an AMD Athlon 1400 with 512 MB DDR RAM.   I have the K7T266 Pro (MS-6380) chipset. Can anyone think of what I am missi

  • 2560x1440 quit on macbook with miniDP to DP

    My macbook quit displaying 2560x1440. It is a late 2009 13 inch notebook with the NVidia GeForce 9400M graphics. I connected the display to another mac to learn that the display and cable worked perfectly. Therefore, the problem was with my macbook.

  • RFC_ERROR_COMMUNICATION

    Hi, I have just done R3 lookup within mapping for one field conversion.I am getting the following error RuntimeException in Message-Mapping transformation: Exception:[com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: Connect to SAP gateway

  • Balance Sheet - Assets on left hand side and Liabilities on right hand side

    Hi Experts, I was wondering in FI, if its possible to view and print balance sheet report with assets on left hand side and liabilities on right hand side, meaning side by side. I tried really hard in FGI5 and GRR2, but coulnt succeed. If somebody as

  • OS 10.5.4 and Appleworks Database

    I just purchased a new iMac 24 inch. I also have a bunch of old databases from Appleworks 6. Can I install Appleworks on the new iMac so I can use the older databases? I didn't realize iWorks wouldn't have a database application. If I can't install A