Cannot create guest virtual machine with Solaris 10 SPARC in Oracle VM 2.2

Dear All,
I try many times to create guest virtual machine with Solaris 10 SPARC but not get success.
When I created it already and then I start the Power On button, it run normally but the Console button cannot click on (hide). After that the virtual machine running abit then it change status to Powered Off.
Please kindly give advice for this.
Thanks and regards,
Heng

I storgly doubt, VMware player is available for Solaris 10 SPARC version.
Solaris 10 is not a comercial product, like ubuntu, windows, MAC etc... It's really for a server.
That's the reason still I hate Solaris 11 as a desktop. You have very limited product/software.... This may change for Solaris 11, but U can't expect one for Solaris 10.

Similar Messages

  • 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] .

  • Create a virtual machine of OS X

    Hi! I need some help. I'm trying to create a virtual machine with OS X Yosemite installed. I have my macbook and I download an original version of OS X Yosemite from the app store. Now I want to install this OS on a virtual machine (using for example VirtualBox "www.virtualbox.org" because is the virtual machine software that I use) for try some things, install some apps, do a internal network with other machines and try some configurations, but I don't want to break my macbook (reinstall the OS is so boring). Can you give me some instructions or any manual to do this.
    Thank you very much!

    Boot Camp is not a Virtualization scheme -- it is only a set of drivers for the Mac-specific Hardware so that Windows can run nativley.
    I think you should be asking VMWare whether you can run that VMWare program on  a Mac, and how to install it. That is where you will need to turn for support if you run into problems.

  • Create Hyper-V Virtual Machines with Windows PowerShell searching on hostname

    Dear,
    I’m a starter with PowerShell scripting an I’m looking for a script to create Hyper-V Virtual Machines with Windows PowerShell. The idea behind the script is that when I run the script its first searching for the hostname. I’m migrating 24 locations and each
    location have a different hostname like xxx-SRV001. The script needs to use the first 3 signs from the hostname in this case “xxx” and create 2 VM's with below info:
    Virtual Machine 1 2048MB
    Virtual Machine 2 4096MB
    Location D:\VM\
    I can create VM's with Powershell into Hyper-V so only a script to first searching for the first 3 characters of the hostname is enough.
    Example:
    It's the intention that when the script runs it's looking for the hostname. As example we have hostname 000-SRV001
    If the script see the first 3 characters of the hostname, in this case 000 he need to create 2 VMs with name xxx-SRV002 and xxx-SRV004
    I think it must be something with 
    $hostname = "Get-WmiObject -computername $Machine Win32_Computersystem"
    But then when i'm asking for $hostname he must give me back the hostname and if the hostname is 1 of the 24 locations then he need to create 2 vm's in Hyper-V with above info.
    Can you help me or do you have a script for this? 

    Juste use :
    $vram = 1GB*$vRam
    You not need the "
    Do you have any error with the creation of the VM?
    # Variables
    $VMName = Import-Csv "C:\HyperV\input.csv"
    $VHD = 40GB
    $VMLOC = "C:\HyperV"
    $vSwitch = "External"
    $ISO = "C:\ISO\WinServer2012R2.iso"
    $LocationCode = $env:COMPUTERNAME.Split("-")[0]
    # Create VM Folder
    MD $VMLOC -ErrorAction SilentlyContinue
    Foreach ($VM in $VMNames)
    $Name = $VM.name
    [int64]$vRam = $vm.vram
    $vram = 1GB*$vRam
    $VMName = $LocationCode+$Name
    # Create Virtual Machine
    New-VM -Name $VMName -Path $VMLOC -MemoryStartupBytes $vRam -NewVHDPath "$VMLOC\$VMName\Virtual Harddisks\$VMName.vhdx" -NewVHDSizeBytes $VHD -SwitchName $vSwitch
    # Configure Virtual Machines
    Set-VMDvdDrive -VMName $VMName -Path $ISO
    Start-VM $VMName
    # Configure Virtual Machines
    Set-VMDvdDrive -VMName $VMName -Path $ISO
    Start-VM $VMName
    Error message 
    New-VM : '003' failed to modify device 'Memory'. (Virtual machine ID 8F5F32D7-F1A0-4A68-8B01-CA6661869A1E)
    Invalid startup memory amount assigned for '003'. The minimum amount of memory you can assign to this virtual machine is '32' MB. (Virtual machine ID 8F5F32D7-F1A0-4A68-8B01-CA6661869A1E)
    A parameter that is not valid was passed to the operation.
    At line:20 char:5
    + New-VM -Name $VMName -Path $VMLOC -MemoryStartupBytes $vRam -NewVHDPath "$VM ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (Microsoft.HyperV.PowerShell.VMTask:VMTask) [New-VM], VirtualizationOperationFailedException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.NewVMCommand
    Set-VMDvdDrive : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:23 char:5
    + Set-VMDvdDrive -VMName $VMName -Path $ISO
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Set-VMDvdDrive], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.SetVMDvdDriveCommand
    Start-VM : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:24 char:5
    + Start-VM $VMName
    + ~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Start-VM], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.StartVMCommand
    Set-VMDvdDrive : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:27 char:5
    + Set-VMDvdDrive -VMName $VMName -Path $ISO
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Set-VMDvdDrive], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.SetVMDvdDriveCommand
    Start-VM : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:28 char:5
    + Start-VM $VMName
    + ~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Start-VM], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.StartVMCommand
    New-VM : '003' failed to modify device 'Memory'. (Virtual machine ID C0FC835E-36D4-462E-BD21-69A75A808E2F)
    Invalid startup memory amount assigned for '003'. The minimum amount of memory you can assign to this virtual machine is '32' MB. (Virtual machine ID C0FC835E-36D4-462E-BD21-69A75A808E2F)
    A parameter that is not valid was passed to the operation.
    At line:20 char:5
    + New-VM -Name $VMName -Path $VMLOC -MemoryStartupBytes $vRam -NewVHDPath "$VM ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (Microsoft.HyperV.PowerShell.VMTask:VMTask) [New-VM], VirtualizationOperationFailedException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.NewVMCommand
    Set-VMDvdDrive : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:23 char:5
    + Set-VMDvdDrive -VMName $VMName -Path $ISO
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Set-VMDvdDrive], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.SetVMDvdDriveCommand
    Start-VM : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:24 char:5
    + Start-VM $VMName
    + ~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Start-VM], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.StartVMCommand
    Set-VMDvdDrive : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:27 char:5
    + Set-VMDvdDrive -VMName $VMName -Path $ISO
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Set-VMDvdDrive], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.SetVMDvdDriveCommand
    Start-VM : A parameter is invalid. Hyper-V was unable to find a virtual machine with name 003.
    At line:28 char:5
    + Start-VM $VMName
    + ~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidArgument: (003:String) [Start-VM], VirtualizationInvalidArgumentException
    + FullyQualifiedErrorId : InvalidParameter,Microsoft.HyperV.PowerShell.Commands.StartVMCommand

  • BadRequest: Virtual machines with secondary network interfaces and virtual machines with no secondary network

    I'm trying to create an "ExtraLarge" VM with multiple NICs.  The New-AzureVM returns the following error:
    BadRequest: Virtual machines with secondary network interfaces and virtual machines with no secondary network
    interfaces are not supported in the same deployment, also a virtual machine having no secondary network interfaces
    cannot be updated to have secondary network interfaces and vice-versa.
    But I have no other VMs.  Or at least I did and then deleted them and all their disks.  The service has no deployments (either staging or production).
    Why is New-AzureVM complaining about a mismatch of VMs with and without secondary network interfaces when no other VMs exist?
    I have tried many things to fix this, including the deletion of ALL of my resources.  I have deleted and created the service many times, both with an affinity group and without.  I have a screen print of the -debug output if your interested.
    Thanks for the outstanding help.

    Hi Ron,
    IMPORTANT NOTE: Please do not post the CONFIDENTIAL DETAILS ever on the public forums, this is HIGH RISK action.
    Please send an email with your contact details to my email
    [email protected] so that I guide you on steps which help you come out of the current scenario. Thank you for understanding.
    I suggest you to create a new VNET and new VM with cloud services. Create Multiple NIC VM. Let us know the results.
    Ref:
    http://azure.microsoft.com/blog/2014/10/30/multiple-vm-nics-and-network-virtual-appliances-in-azure/
    http://blogs.technet.com/b/canitpro/archive/2014/11/04/step-by-step-create-a-vm-with-multiple-nics-in-azure.aspx
    If you are unable to create a VM with multiple NIC, please open a support case as it requires more confidential information which is out of scope of FORUM support offerings.
    Regards,
    Girish

  • �Unable to create the virtual machine. The error was -4�

    I have a VS2003 C# application, which call JACE (a JNI wrapper) through C++ mixed mode to use JAVA object�s functions.
    Because the natural of our JAVA program it must be able to reach maximum heap size of 512MB, we set it during the startup of JVM by using �-Xmx512M� parameter.
    It worked well with a small PC (Dell Optiplex GX750 and Shuttle Xpc ) with only 512MB physical memory. We have about 50 machines running the application in the production.
    Recently, one of our customers installs the application to a larger PC ( Shuttle Xpc with different model), which has 1 GB of physical memory. The application started throw exception from JVM. The error message is �Unable to create the virtual machine. The error was -4�. I checked with JNI return code and found that -4 mean �not enough memory�.
    I did some experiment by running the application with 2GB PC, 1 GB PC, 1GB laptop, 512MB PC. I don�t found relationship between how much �maximum heap size� can be assigned and how much �physical memory� is available (reading from task manager). The 2GB machine can take only 128MB of �maximum heap size� However, 1GB machine can take up to 300MB of �maximum heap size�.
    I also use program like ImageJ (http://rsb.info.nih.gov/ij/) to test maximum heap size for it. I found that ImageJ can take 512MB maximum heap size without problem. It can even take 1024MB of maximum heap size.
    I have created a small program to duplicate this problem. Although it use exact the same code to start JVM up, it can go up to 650MB heap size for both 2GB and 1GB PC.
    This is puzzling. Does anyone know what are factors determine how much �maximum heap size� can be set for JVM from JNI?
    Software used
    Windows XP SP2
    Visual studio.net 2003 SP1 (the problem also occurred without SP1)
    .NET Framework 1.1 SP1
    JACE 1.1rc1_05
    JRE 1.5.07 (also tested with JRE 1.5.09 and 1.6.0 beta)

    Do you resolve the problem? If so what was the fix?
    I have been getting the Java Virtual Machine Launcher error message “Could not create the virtual machine” when attempting to run an Oracle application that uses JNLP via a browser. Even clicking on componets such as javaw.exe produces the error message. In conjunction with receiving the error message, the application that I am working with will not launch.
    I had JRE 5u10 and J2RE 1.4.2u13 installed and thought that installing JDK 5u17 may resolve the issue. I removed JRE 5u10 and J2RE 1.4.2u13 and installed JDK 5u17 (and the included JRE 5u17.) The error message was still there.
    I have unistalled (via Add/Remove programs) and reinstalled (via both Win off-line and on-line) JDK 5u17 and JRE 5u17 many times.
    During the uninstalls I have received a Java Web Start 1.5.0_17 bad installation – error invoking JVM error message.
    I have restarted the machine also.
    There are some remains of J2RE 1.4.2u13 still on the machine –even after the 1.4.2u13 uninstall. The Java\j2re1.4.2_13\lib folder remains.
    I am running Win XP SP2 and IE6 SP2.
    Note: I cannot use Java 6 since the application that I am working with is Java 5 based.

  • Error message: " Couldn't create Java Virtual Machine"

    Hi,
    I recently downloaded from IBM rational application developer for websphere software v 7.5. The installation was successful. But when I try to open it, the error message:"could not create the Java virtual Machine".
    I am working on Windows Xp pro. and java is automatically updated the current version jre 1.6/
    even I tried to run eclipse from the directory c:/programfiles/IBM/SDP still same problem.
    Please some one help me how to fix it.
    Thanks.

    Do you resolve the problem? If so what was the fix?
    I have been getting the Java Virtual Machine Launcher error message “Could not create the virtual machine” when attempting to run an Oracle application that uses JNLP via a browser. Even clicking on componets such as javaw.exe produces the error message. In conjunction with receiving the error message, the application that I am working with will not launch.
    I had JRE 5u10 and J2RE 1.4.2u13 installed and thought that installing JDK 5u17 may resolve the issue. I removed JRE 5u10 and J2RE 1.4.2u13 and installed JDK 5u17 (and the included JRE 5u17.) The error message was still there.
    I have unistalled (via Add/Remove programs) and reinstalled (via both Win off-line and on-line) JDK 5u17 and JRE 5u17 many times.
    During the uninstalls I have received a Java Web Start 1.5.0_17 bad installation – error invoking JVM error message.
    I have restarted the machine also.
    There are some remains of J2RE 1.4.2u13 still on the machine –even after the 1.4.2u13 uninstall. The Java\j2re1.4.2_13\lib folder remains.
    I am running Win XP SP2 and IE6 SP2.
    Note: I cannot use Java 6 since the application that I am working with is Java 5 based.

  • Client Hyper-V "Cannot Connect to Virtual Machine"

    I'm trying to run Client Hyper-V on my Windows 8 Pro machine. I was able to successfully install the service, and can create virtual machines and hard disks on my local system. I can even start them, and see boot activity via the preview window in the MMC.
    I cannot, however, connect to any machines from the local system: when I do, it hangs on "Connecting to <machinename>" for 30 seconds before it pops up with the dialog:
    "Cannot connect to virtual machine. Try to connect again. If the problem persists, contact your system administrator."
    Obviously, because this is Client Hyper-V, I am the system administrator, so I scour the Internet to solve my problem. I see solutions related to firewalls, administrative permissions, a few other things, and nothing has worked. I also tried creating
    a virtual machine on a Windows 8 Enterprise system (which can connect to it just fine) and export it for the Pro machine to import, and I still cannot connect to it, whether the VM is registered in place or copied to the host.
    Some other notes:
    - None of these systems has an OS installed - two locally created ones either had no boot or booted off a Linux LiveCD, and the exported one attempted to do a PXE boot. Thus, I cannot attempt to link via Remote Desktop since the computers have no names
    - Hyper-V has some other quirks on my system as well: in order to stop a virtual machine, I have to end the vmwp process - which restarts the machine - and then stop it from the console within a few seconds. Otherwise, it hangs in the "Stopping"
    state. In addition, none of the buttons on the side of the MMC work, but that occurs over all of MMC.
    - No events show up in the Event log when a connection fails
    - I am an admin on the Pro machine and have permissions to connect to machines and operate the management view

    When you checked the event log’s what sources did you check? 
    Can you verify there are not any relevant error/warning events under the following sources:
    Applications and Services Logs
    Microsoft
    Windows
    Hyper-V-VMMS
    Admin
    Operational
    Hyper-V-Worker
    Admin
    Operational
    If not we should enable some additional logging if possible to see what is going on.
    Shutdown any running VM’s
    Close all of the Hyper-V UI
    Stop the VMMS service (net stop vmms)
    Enable Analytic logging for the VMMS and Worker Process (see below)
    Enable UI Tracing for Hyper-V Manager and VMConnect (see below)
    Start the VMMS service (net start vmms)
    Open Hyper-V Manger
    Restart the VM
    Attempt to connect (try two or three times)
    Gather Logs (see below)
    Disable Tracing (see below)
    Enabling Analytic Logging For the VMMS and Worker Process
    Open the Event Viewer
    From the menu bar select View -> Show Analytic and Debug Logs
    Navigate to the Hyper-V logs and Enable the Analytic Channels
    Applications and Services Logs
    Microsoft
    Windows
    Hyper-V-VMMS
    Analytic
    Right Click -> Enable (yes if a pop up asks about enabling the logs)
    Hyper-V-Worker
    Analytic
    Right Click -> Enable (yes if a pop up asks about enabling the logs)
    Enabling UI Tracing
    Create a new text file named “VMClientTrace.config” in the "%appdata%\Microsoft\Windows\Hyper-V\Client\1.0\” folder
    Copy the following XML text into that file:
    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
        <Microsoft.Virtualization.Client.TraceConfigurationOptions>
            <setting name="TraceTagFormat" type="System.Int32">
                <value>3</value>
            </setting>
            <setting name="BrowserTraceLevel" type="System.Int32">
                <value>71</value>
            </setting>
            <setting name="VMConnectTraceLevel" type="System.Int32">
                <value>71</value>
            </setting>
        </Microsoft.Virtualization.Client.TraceConfigurationOptions>
    </configuration>
    Save the file.
    Gathering The Logs
    The Analytic logs will be in the analytic folder (you often have to refresh or select another source then analytic again to see them)
    The UI trace Logs will be in %temp% (sometime back one directory i.e. %temp% = “C:\Users\taylorb\AppData\Local\Temp\2” for me but the logs are at “C:\Users\taylorb\AppData\Local\Temp”
    Disabling Tracing
    To disable Analytic Tracing just right click on the analytic sources and select disable (same as enabling)
    To disable UI tracing just delete the “%appdata%\Microsoft\Windows\Hyper-V\Client\1.0\VMClientTrace.config” file.
    -Taylor Brown
    -Program Manager, Hyper-V
    -http://blogs.msdn.com/taylorb

  • Virtual Machine with SQL vs. Azure SQL?

    One thing I cannot find a clear answer too is what are the differences and pros/cons between creating a Web or Business SQL Database on the Azure, compared with creating a Virtual Machine on Azure that has SQL installed on it?
    I think I read that VM's don't have static IP's and can randomly restart etc... so are not good for databases or websites, but if that is the case what's the point?
    I am wondering if anyone has a larger project and more experience with Azure and can lend some advice and knowledge as to the difference between both approaches. One being to create a Website and SQL service on Azure for the website and the database, compared
    with creating a single machine and installing IIS and SQL and running it like a conventional web server.
    Which method is more scalable? Also, I believe the VM would be much quicker for data access as it's on the same physical machine as the server, compared with how slow Azure seems to be when an Azure website communicates with an Azure Database.

     what are the differences and pros/cons between creating a Web or Business SQL Database on the Azure, compared with creating a Virtual Machine on Azure that has SQL installed on it?
    Hello,
    Windows Azure SQL Database and SQL Server on Windows Azure VM are optimized for different purposes. For example, SQL Database is optimized to reduce costs to the minimum amount possible,remove the security risks and hassles. But SQL Database operates across
    shared resources so that customers cannot control CPUs or memory.
    When choosing SQL Server running in a Windows Azure VM, SQL Server can best compatibility with existing applications. And we can get best vertical scalability and better performance.
    As for Widows Azure Web Site deployment, I'm not familiar with the website developement, I suggestion you post the question in
    this forum.It is appropriate and more experts will assist you.
    Reference:
    Data Series: SQL Server in Windows Azure Virtual Machine vs. SQL Database 
    Choosing between SQL Server in Windows Azure VM & Windows Azure SQL Database
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • "Low Memory Warning" and "fails to create a virtual machine"

    From ide.conf, I learnt:
    If you are getting the 'Low Memory Warning' Message Dialog while running JDeveloper, please increase the -Xmx value below from the default 768M to something greater, like 1024M or 1250M. If after increasing the value, JDeveloper is no longer starting up because it fails to create a virtual machine, then please reduce the modified -Xmx value.
    However,
    If I set it to a bigger value, say 512M, it fails to create a virtual machine.
    If I set it to a smaller value, say 400M, it throws Low Memory Warning after a short while.
    So I do not know how to do. Total physical memory of my box is 4G. Free physical user memory after starting jdev is 1.5G.

    512M isn't bigger, the default (according to your reading) is 768M...
    I just tried with JDeveloper 11.1.2.2.0 (64-bit machine, but using 32-bit JVM) - works fine with 1024M - just to confirm that my changes are working, 5024M does give me "unable to create virtual machine"
    Have you messed about with other settings?

  • Cannot create new virtual network adapter on logical switch team

    I am currently moving from Hyper-V 2012 to Hyper-V 2012 R2 and in turn I have just installed SCVMM 2012 R2. I am using SCVMM 2012 R2 to create some NIC teams which I have done no problem in the past with SCVMM 2012 SP1. Now we have everything set up just
    like we did in the past and it seems to create the NIC team just fine. The problem is when I try to create a New Virtual Network Adapter, when I click the button, it immediately says:
    VMM cannot create the virtual network adapter. Either there are no VM networks associated with the network sites that the uplink port profile "Logical Network Name" Connects to, or the VM networks associated with those network sites all use Hyper-V
    network virtualization.
    Now I've checked and the VM Network is assigned to the logical network that is associated with the Network Site that contains the host I'm working with. I've also tried disabling Hyper-V network virtualization but that didn't change anything and I thought
    that it's always enabled on 2012 R2 anyway.
    I would like to gain network connectivity to this team at least for testing purposes and we also are planning on building a Hyper-V cluster. Were some new restrictions added in 2012 R2 to prevent creating virtual network adapters in this scenario or am I
    doing something wrong?
    Any information would be helpful. Thank you in advance for your time!

    Hi Sir,
    Glad to hear that the problem has been solved , thanks for your sharing .
    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] .

  • "Could not create Java virtual machine" for several XP SP3 clients

    Hi,
    In this last year I got the message "could not create java virtual machine",
    (suddenly, after several mounths without any kind of problem),
    on 10-15 XP SP3 clients in our lan, lan in which all the 200 clients (90% XP SP3)
    have this application installed.
    Every time the solution seems to be different:
    sometimes the cause is a virus, sometimes i have to disinstall all Java components
    and reinstall only the Java RE 6.0_23 (used by the application),
    sometimes I have to make also a system registry cleaning for Java components,
    only few times was enough to clear the Java cash, change the kind of Java network connection,
    delete the temporary files...
    In two situations the problem was solved changing UltraVnc with RealVnc
    and only once the user solved himself restarting the computer...
    I'd like to know which is the meaning of this message and which steps is better
    to follow in order to solve the problem in the shortest time.
    Thank You

    Thank you
    for anwering my question !
    Anyway, in all the 10-15 cases I solved this problem, I hadn't to change the amount of RAM...
    never... and, once solved, the computer client is ok and the application works without subsequent problems...
    So, as I said, i can solve the problem without Knowing the real reason, and often after several
    hours... (you can read in my previous comment about a lot of differences solutions...)
    The matter is... that I can't understand "how and why" I solve the problem...
    Bye

  • 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)

  • Could Not Create Java Virtual Machine when lauching PS3 Meadis server

    I suddenly get the following error message when trying to launch the PS3 Media Server, " COULD NOT CREATE JAVA VIRTUAL MACHINE". I have tried uninstalling and installing both Java and the PS3 Media Server. Nothing seems to work. Any ideas or advice?

    You changed something on your machine. Might help to remember what.
    But to start with you first figure out if java itself is working. If it is then it is problem with the application and not java.

  • Message "Failed to create Java Virtual Machine" after starting Design Studio 1.2 SP1

    Hi experts,
    after I installed the SP1 of Design Studio 1.2 I become the Message "Failed to create java virtual machine" and I´m not able to start the Design Studio.
    My java version is 1.7
    My SapDesignStudio.ini File (C:\Program Files\SAP BusinessObjects\Design Studio) looks like as follow:
    -startup
    plugins/org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar
    --launcher.library
    plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.200.v20130521-0416
    -name
    SAP
    BusinessObjects
    Design
    Studio
    -vmargs
    -Xmx1024m
    -Xms256m
    -XX:PermSize=32m
    -XX:MaxPermSize=512m
    -XX:+HeapDumpOnOutOfMemoryError
    -Dfile.encoding=UTF-8
    -Dosgi.requiredJavaVersion=1.6
    -Djava.net.preferIPv4Stack=true
    -Djdk.xml.entityExpansionLimit=0
    -Djavax.net.ssl.trustStoreProvider=SunMSCAPI
    -Djavax.net.ssl.trustStoreType=Windows-ROOT
    -Dorg.osgi.framework.os.name=win32
    Any ideas or experiences?
    Many thanks and regards,
    Michael

    Hello Max,
    many thanks for your reply and your in my case absolutely correct answer!
    In respect to your solution proposal I have renamed my Analysis-workspace folder to "Analysis-workspace-V0"
    After I have started the Design Studio 1.2 SP1 a new Analysis workspace folder was created with the typical standard name "Analysis-workspace"
    So I have my old Design Studio Application and an new empty Analysis folder.
    By the way, in my case in addition to the folder rename it was necessary to change the -Xmx Value (SapDesignStudio.ini File) a little bit lower as in standard (in the DS1.2 SP1 setting) 1024m. To become not the Message "Failed to create Java Virtual Machine" I have changed the -Xmx Value from 1024m to 512m.
    Now I´m able to start the Design Studio 1.2 SP1 as expected without Message and without breaks down after 5-6 seconds during the startup.
    Thanks again!
    Best regards,
    Michael

Maybe you are looking for

  • External Hard Drives and Time Capsule Backup Setup Opinions

    Bottom line up front: If you had two 1.5 Terrabyte Western Digital MyBook drives and an AirPort 1.5 TB Time Capsule, and you wanted duplicate backups of time machine (automated) as well as additional storage space for Movies and Photo's... How would

  • City of origin need to be recorded for PO - and reports required?

    Hi all, My client is requiring city of origin report with respect to PO, can you suggest me through which reports we can get city of origin with respect to PO regards, Sanju

  • Bluetooth connection to my Macbook

    I'm hoping someone can help me. I would like to link my iPhone to my macbook so that I can use it as a kind of hands free headset. I am using skype on the macbook and would like to be able to talk via skype away from my computer. we don't don't have

  • Streaming .wma files throug binary gateway

    A customer of mine is asking about any issues that they might run into or any best practices around streaming .wma files through the portal and thus the gateway. They are looking to stream traffic cams from an outside source to their intranet.

  • HD DVD Burners?

    I notice that the recent update to DVD SP now has better support for HD DVD. So, what HD DVD burners are available to consumers, specifically external burners?