Java Step Types with Java Virtual Machine higher than java-6u16?

Documentation of Java steps says, that these steps are tested with java version 6 update 16. I am talking about the java step types that can be found in directory <TestStand Public>\TestStand 2010\Examples\Java. 
If I install another java version, e. g. java 7, step "Start JVM" will exit with an error "-4" and error message "Could not launch JVM.". While Debugging source code of JavaCall.dll, I figured the failing code line out:
"fpCreateJVM(&jvm,(void**)&env,&vm_args);" is the execution of function "JNI_CreateJavaVM" and returns error code -4.
Till now I could not find out, why the jvm does not start. I guess -4 means "Insufficient memory to create the JVM." (http://zone.ni.com/reference/en-XX/help/370052J-01/tssuppref/infotopics/java_steps_errors/)
Has anyone an advice for me?

This post gave me a hint: http://stackoverflow.com/questions/3400292/jni-enomem-from-jni-createjavavm-when-calling-dll-that-us...
Though my development computer has enough ram, jvm is started within the Teststand process which offers limited memory. I changed JavaCall.c and added parameter "-Xmx64m" to the jvm creation call. Now it works with jre 7.
Because memory space Teststand offers to the jvm is different on different computers, an implementation would be nice that checks how much memory is available and then passes the calculated <MEM> as parameter "-Xmx<MEM>m". Here is an example implementation: https://forums.oracle.com/forums/thread.jspa?threadID=1546540

Similar Messages

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

  • Problem with the virtual  machine

    Hello.
    i've encountered problem with the virtual  machine. Java instance is reseting sometimes. I found message in dev_server0 there is:
    <b>
    [Thr  6] JLaunchIExitJava: exit hook is called (rc = 666)
    [Thr  6] **********************************************************************
    ERROR => The Java VM terminated with a non-zero exit code.
    </b>
    in dev_jcontorol:
    <b>
    [Thr  1] Thu Mar 13 15:58:39 2008
    [Thr  1] JStartupICreateProcess: fork process (pid 16077)
    [Thr  1] JControlICheckProcessList: process server0 started (PID:16077)
    </b>
    where i can looking the reason of this?
    regards,
    Denis

    Hi Denis,
    This looks like a memory issue, similar problems have been posted on this forum before.
    Change the following params.
    -XX:PermSize=2048m
    -XX:MaxPermSize=2048m
    Also,
    See SAP note 709140 and the referenced notes.
    Regards,
    Siddhesh

  • Is Time Machine dealing with Fusion virtual machines differently now?

    I have discovered and others have noted that TM backs up Fusion VMs as a single file. For me, this has been roughly 32GB a pop, chewing up my 500GB TM target volume breathtakingly quickly. Suddenly, however, changes within the VM are requiring only about 7.6GB per TM back-up, roughly one-quarter of the previous amount. Does anyone know what's going on here? I downloaded the usual monthly bushel of Windows automatic updates (security, stability, enhancements, etc.) yesterday for my Vista Ultimate guest VM; could these somehow have made the TM process for a Fusion VM more efficient? This seems too good to be true!

    All --
    The most knowlegeable VMware employee at the Fusion booth at Macworld (two other VMware employees there did not know) told me definitively that Fusion virtual machines are no longer being backed up by Time Machine.
    On December 23rd, in another thread, Kimo said (see also Peggy Lynn's posts, above):
    "At this link you'll find the Fusion 1.1 release notes http://www.vmware.com/support/fusion/doc/releasenotes_fusion.html
    "Fusion 1.1 was the upgrade that Vmware provided at the end of november.
    As you can see they don't mention any issue with Time Machine.
    But searching around I've found the Fusion 1.1. RC1 release notes at this link
    http://www.vmware.com/beta/fusion/releasenotes_fusion.html
    "In this document you can find this section:
    "-Leopard's Time Machine feature causes VMware Fusion 1.1 RC1 to hang.
    In Mac OS X 10.5 (Leopard), the Time Machine feature interferes with the Virtual Machines directory, causing VMware Fusion to hang when you launch it.
    Workaround: Configure Time Machine to exclude the Virtual Machines folder.
    This problem is planned to be fixed for the upcoming VMware Fusion 1.1 GA release. Virtual machines will be excluded from Time Machine backups...
    "...and they did it!
    "They should announce it, in the right way, with the final 1.1. release notes. I can confirm, now, that my first 2 backups (of my vmware files) were done before the fusion 1.1 upgrade.
    The day I've installed the upgrade backups have been stopped.
    "I'm not glad for this, It should be a decision of mine..."
    I completely agree with Kimo. I have reviewed the 1.1 GA release notes, again, and can find no mention of Time Machine. Someone new to Fusion who trialed or purchased Fusion 1.1 GA would not be able to tell from a read of the Release Notes that her/his VM was excluded from TM backup. VMware indicated to me that they made this move, in cooperation with Apple, because the problem outlined above would occur if TM ran when a Fusion VM was active.
    I have been waiting for Dave Nanian to e-v-e-n-t-u-a-l-l-y update SuperDuper! to an exalted state of Leopard compatibility and, frankly, have in the interim been doing less frequent clone backups with CCC. As a consequence, I have been less protected (with respect to my data in the Vista VM) than I thought I was.
    Let me state the obvious: because, for many of us, the data in our VMs is precious, it is irresponsible for VMware to make a unilateral and fundamental change in a backup modality that is, after all, part of OSX, without giving the user a choice (the bug doesn't manifest itself if the VM isn't active; I just shut mine down to do periodic TM backups without mishap) and (ii) proactive notification of registered users -- they have the email addresses! That Apple was apparently a part of this is quite disappointing as well.
    More of the obvious: if you are a Fusion user, you should -- for sure -- rely on a backup approach other than TM to protect your VM data.
    Regards.

  • JVM crash with HotSpot Virtual Machine Error, Internal Error

    I got following error after hours' running of weblogic:
    # HotSpot Virtual Machine Error, Internal Error
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Error ID: 4349254E560E43505000F4
    # Problematic Thread: prio=1 tid=0x808e1d8 nid=0x29db runnable
    my sever environment
    OS: Redhat6.2(Kernel 2.2.14-5.0 on an i686)
    JDK: java version "1.3.1_01"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_01)
    Java HotSpot(TM) Client VM (build 1.3.1_01, mixed mode)
    WLS: weblogic6.1 sp2
    could you help me? very urgent. thanks.

    it works well now . thanks
    "Bernie Wong" <[email protected]> wrote:
    Try this. I was helping a friend who had the same error id/internal error
    on
    WLS 6.1 SP2, 1.3.1_01 on W2K. He was consistently getting the Error ID:
    4349254E560E43505000F4 five minutes into testing his appl.
    Set -XX:MaxPermSize=128m.
    The problem disappeared.
    Please let me know if that helped you.
    "shang zhengjun" <[email protected]> wrote in message
    news:3cfdab48$[email protected]..
    I got following error after hours' running of weblogic:
    # HotSpot Virtual Machine Error, Internal Error
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Error ID: 4349254E560E43505000F4
    # Problematic Thread: prio=1 tid=0x808e1d8 nid=0x29db runnable
    my sever environment
    OS: Redhat6.2(Kernel 2.2.14-5.0 on an i686)
    JDK: java version "1.3.1_01"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1_01)
    Java HotSpot(TM) Client VM (build 1.3.1_01, mixed mode)
    WLS: weblogic6.1 sp2
    could you help me? very urgent. thanks.

  • Stuck with HotSpot Virtual Machine Error, Internal Error in struts

    Hi i use to get this the following error message in my page ,while i am using struts and cann't understand why this error is raised can any body help me in this regard,as i have check nearly all the other possibilities of error.
    # HotSpot Virtual Machine Error, Internal Error
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_01-b06 mixed mode)
    # Error ID: 52454C4F4341544F520E43505001E7
    # Problematic Thread: prio=5 tid=0x035dd210 nid=0x7dc runnable
    Heap at VM Abort:
    Heap
    def new generation total 1728K, used 464K [0x10010000, 0x101e0000, 0x104f0000)
    eden space 1600K, 21% used [0x10010000, 0x10064218, 0x101a0000)
    from space 128K, 99% used [0x101c0000, 0x101dfff8, 0x101e0000)
    to space 128K, 0% used [0x101a0000, 0x101a0000, 0x101c0000)
    tenured generation total 41916K, used 40307K [0x104f0000, 0x12ddf000, 0x14010000)
    the space 41916K, 96% used [0x104f0000, 0x12c4ceb8, 0x12c4d000, 0x12ddf000)
    compacting perm gen total 38656K, used 35140K [0x14010000, 0x165d0000, 0x18010000)
    the space 38656K, 90% used [0x14010000, 0x16261230, 0x16261400, 0x165d0000)

    I have ealso tried to increase my pages buffer size to 1000K but still getting the same error

  • Firefox 3.6 doesn't work with VMWare Virtual Machine Console Plug-in but IE does. Previous versions of FF worked fine. Will this be fixed in a new FF release?

    When I try to open the Virtual Machine console I get the error:
    Cannot access virtual machine console. The request timed out.
    I had no problem with this until Firefox did an upgrade to 3.6 and now it doesn't work and I have to use IE to open the console.
    I can see lots of other people have this same problem so am wondering when it will be fixed.

    Look at this blog post for some work arounds for the windows version.
    http://planetvm.net/blog/?p=1316

  • WRT54G2 with Subnetted Virtual Machines

    I am unable to access the internet from guest virtual machines on a /25 subnet, although local lan connectivity seems to work fine, and local lan access to the internet works fine. My setup: WRT54G2 in Gateway mode 10.100.200.1/25 Host machine 10.100.200.4/25 Guests (Virtual machines) on the host: : 10.100.200.128 -254 (Host and Guests are Ubuntu 10.11 under KVM, w/virt-manager "routed networking" Static route on WRT54G2: 10.100.200.128/25 gw: 10.100.200.4 Local LAN connectivity is complete. For example, ssh from the lan to any guest works, as does ssh from any guest to any lan machine. Local lan internet access is complete, includiing the vm Host. Ping and traceroute from the WRT54G2 to lan machines, Host, and guests is successful. Failure: Guest machines cannot reach the internet. They can reach the router. Traceroute to an internet address from a guest machine returns responses from the WRT54G2, followed by time-outs. Ping from a guest machine to the internet fails. I have experimented with both /25 and /24 subnet masks on the WRT54G2 lan port without apparent effect. At this point I am rapidly running out of ideas. The WRT54G2 seems to refuse to pass guest machine packets out to the internet. I have found suggestions on various web fora that NAT difficulties can arise when using subnets with the WRT54G2, but I've been unable to track down details. Any suggestions would be deeply appreciated. Thanks in advance...

    Linksys routers are consumer routers. They don't really support more complex network configurations.
    In your case, the problem is that the WRT only does NAT for it's own LAN IP subnet.
    If a computer inside your LAN (e.g. 10.100.200.4/25) sends something into the internet, the WRT will do source IP NAT from 10.10.200.4 to its public IP address. This happens for all source IP addresses inside 10.100.200.4/25 but not for any other IP address.
    This means, if your VM with 10.100.200.200/25 would send something, it is routed through the host machine to the WRT, i.e. the WRT receives a packet from 10.100.200.200 to an internet IP address for forwarding. As the source IP address is not in 10.100.200.0/25 it won't go through NAT, i.e. the WRT will route the packet with unmodified source IP address 10.100.200.200 into the internet where it will be quickly discarded.
    That's a known limitation of Linksys routers and they don't have any configuration options to configure the NAT function in detail (like you would find in a Cisco IOS router). The Linksys always does NAT for the LAN IP subnet but for nothing else.
    You only have two options:
    1. use NAT on the host machine, i.e. the host machine does NAT between the VMs and the host network. Of course this way, the VMs are not accessible from the outside.
    2. use ethernet bridging instead of routing between VMs and host network. This would create a single ethernet network and you only need a single LAN IP subnet for VMs and the normal network.

  • Virtual Machine - high disk response time

    Hi Everyone,
    Got something strange happening in our lab at the moment and was wondering if anyone had experienced the same thing (and maybe has a solution).
    Our lab environment in a nutshell:
    2x Windows 2012 Hyper hosts cluster connected to a "home-made" SAN based on Windows 2012 iSCSI target.
    Each Hyper-V host has two 1Gbps network cards to connect to the SAN via the Microsoft iSCSI initiator, with MPIO in load-balancing mode (least queue depth).
    The SAN (Windows 2012 server with iSCSI target) has 4x 1Gbps cards, teamed two by two, so presenting two IP addresses used by each hosts to connect to it (via MPIO).
    The disk subsystem on the Windows 2012 SAN is an external HP storage works with 25x HP 500 SATA disks, connected to the server via an INTEL RAID controller with 2x 240GB SSD caching enabled for read/write.
    The iSCSI network is on a dedicated HP switch, with flow-control and jumbo frame enabled (tested ok).
    Now the problem:
    I've built a few virtual machines on the two hyper-v nodes and I'm getting very bad disk response time as soon as there is an increase in the disk traffic.
    When the virtual server is doing very little, I get a normal 6-8ms, but I soon as I increase the traffic (by for example copying a big file, or installing an application), this figure shoots up to 200ms, 300ms and more!
    So I first thought that it was my disk subsystem (and the SAN server), but while the spikes are happening within the virtual machine, the disks on the SAN Server are sitting at about 10ms, with some spikes to about 20ms (which is pretty good and what I would
    expect to see within the VM because of the SSD cache).
    I then thought it could be the network, but during those times of activity, the network does not get saturated at all. Barely 150Mbps to 200Mbps per link.
    I even tried to disable MPIO and run everything across one Ethernet link, but still the same result.
    Am I missing something here? doing something wrong? or is this expected behaviour?
    Thank you,
    Stephane

    Hi,
    VR38DETT is right, if you want to use more ISCSI bandwidth or redundancy you must use the MPIO method, Multipath I/O (MPIO) is a feature that provides support for using multiple
    data paths to a storage device. Multipathing increases the availability of storage resources by providing path failover from a server or cluster to a storage subsystem.
    More information:
    Multipath I/O Overview
    http://technet.microsoft.com/en-us/library/cc725907.aspx
    Support for Multipath I/O (MPIO)
    http://technet.microsoft.com/en-us/library/cc770294.aspx
    Hope this helps.
    Alex Lv

  • Error when converting VMware virtual machine to Azure with new Virtual Machine Converter 2.0

    Hello
    I'm trying to convert a VMWare virtual machine to Azure with the new Microsoft Virtual Machine Manager 2.0
    The process stops when the disk conversion start. Error log below.
    Thanks for any advice.
    Regards
    Toon
    04/18/2014 14:53:03 +02:00  [9]  VERBOSE:
    This conversion will proceed off-line.
    04/18/2014 14:53:03 +02:00  [9]  VERBOSE:
    The uninstallation of tools is not supported in off-line machine conversion scenarios.
    04/18/2014 14:53:03 +02:00  [9]  VERBOSE:
    NOT preparing source virtual machine, this conversion is being treated as off-line.
    04/18/2014 14:53:03 +02:00  [9]  VERBOSE:
    Downloading VMware virtual disks from source virtual machine
    04/18/2014 14:53:04 +02:00  [9]  VERBOSE:
    System.Net.WebException: The remote server returned an error: (404) Not Found.
       at Microsoft.Accelerators.Mvmc.Engine.ForVMware.ExportLease.GetFiles(IDownloadAdapter adapter, String host, DirectoryInfo dirInfo, TaskContext taskContext)
       at Microsoft.Accelerators.Mvmc.Engine.ForVMware.VirtualMachine.DownloadFiles(IDownloadAdapter downloadAdapter, String toPath, TaskContext context)
       at Microsoft.Accelerators.Mvmc.Engine.ServiceLayer.Internal.MachineConversionService.ConvertToDrives(IMachineConversionRequest machineConversionRequest, IPostProgress& provisionHyperVPhase, IVirtualMachine& sourceVM, TaskContext taskContext)
    04/18/2014 14:53:04 +02:00  [9]  VERBOSE:
    Downloading device (/vm-3213/VirtualLsiLogicController0:0) disk-0.vmdk
    04/18/2014 14:53:04 +02:00  [9]  EXCEPTION:
    System.Net.WebException: The remote server returned an error: (404) Not Found.
       at Microsoft.Accelerators.Mvmc.Engine.ForVMware.ExportLease.GetFiles(IDownloadAdapter adapter, String host, DirectoryInfo dirInfo, TaskContext taskContext)
       at Microsoft.Accelerators.Mvmc.Engine.ForVMware.VirtualMachine.DownloadFiles(IDownloadAdapter downloadAdapter, String toPath, TaskContext context)
       at Microsoft.Accelerators.Mvmc.Engine.ServiceLayer.Internal.MachineConversionService.ConvertToDrives(IMachineConversionRequest machineConversionRequest, IPostProgress& provisionHyperVPhase, IVirtualMachine& sourceVM, TaskContext taskContext)
       at Microsoft.Accelerators.Mvmc.Engine.ServiceLayer.Internal.MachineConversionService.<>c__DisplayClass3.<ConvertToDrivesAsync>b__2()
       at System.Threading.Tasks.Task`1.InnerInvoke()
       at System.Threading.Tasks.Task.Execute()
    04/18/2014 14:53:04 +02:00  [9]  Exception caught : System.Net.WebException: The remote server returned an error: (404) Not Found.
       at Microsoft.Accelerators.Mvmc.Gui.Model.ConversionModel.ConvertGuestMachine()
       at Microsoft.Accelerators.Mvmc.Gui.ViewModels.Machine.MachineCompletionViewModel.OnWorkerDoWork()
    04/18/2014 14:53:04 +02:00  [1]  Background task is complete.
    04/18/2014 14:53:04 +02:00  [1]  Conversion error message is displayed.
    04/18/2014 14:53:04 +02:00  [1]  Value of 'ErrorMessage' = 'The remote server returned an error: (404) Not Found.'
    04/18/2014 14:53:06 +02:00  [1]  Pressing Finish on the 'Completion' page.
    04/18/2014 14:53:06 +02:00  [1]  UI wizard is closing.
    04/18/2014 14:53:06 +02:00  [1]  Message box displays : 'Are you sure you want to exit? Any running jobs will be cancelled and the wizard will close.'.
    04/18/2014 14:53:09 +02:00  [1]  Cancel confirmation prompt was canceled by user.

    Hi,
    Have you found any solution?
    Thanks 
    Alessandro

  • Why my application can't can run with ojvm virtual machine

    in my application ,i select the ojvm virtual machine in run configuration,but only the following returned:
    1.Successful compilation: 0 errors, 0 warnings.
    2.Process exited.
    Debugger connection to debuggee process has been lost.
    Debugger disconnected from local process.
    when i change ojvm to server or anthing else ,there is not that problem any more.
    why?

    I have had this problem for months with no resolution from Oracle. Another similar machine works fine with OJVM. Go figure. Doesn't seem to be something Oracle is interested in resolving, but appears to be occurring on a variety of systems.

  • SQL Azure with Azure Virtual Machine inside Virtual Network - How to connect

    Hi Team,
    I have one typical scenario where there is one Windows Application I wan to run from my Windows Azure Virtual Machine which is inside Azure Virtual Network (which has its DNS and ADFS and etc..)
    Because its Virtual Network, We can't access internet within that network, apparently Virtual Machine can't access SQL Azure. So, How would we resolve this scenario.
    Application is running great from my local system so, its accessing SQL Azure Database from my system. So, Application or SQL Azure or connection or such areas has no issue.
    Regards, Brijesh Shah

    Hi Brij,
    Thanks for your reply.
    To add a DNS server in an Azure Virtual network, you can refer to the link below:
    http://msdn.microsoft.com/en-us/library/azure/dn275925.aspx
    To obtain a public Azure-provided DNS server IP addresss, you can run "ipconfig/all" in another Azure VM which is not a virtual network which has DNS server defined. After you add a DNS server in the virtual network that VM belongs to, please restart
    the VM to update the change.
    However, since you mentioned that you are using a customed domain, I am not quite sure if any other configuration should be done for your domain.
    Best regards,
    Susie

  • Link remoteapp with azure virtual machine

    I am running remoteapps. How do i connect the applications to retrieve databse from aa Azure virtual machine?
    Please help!

    Hi,
    To allow applications, that you publish through Azure Remote App, to be able to connect to backend servers running in Azure IaaS, the Azure RemoteApp vnet and the Azure IaaS vnet need to be connected. The following guide might be helpful here:
    How to link Azure RemoteApp to an existing VNET
    Kind regards,
    Freek Berson
    The Microsoft Platform
    Twitter
    Linked-in
    Wortell company website

  • Do i need another Virtual machine rather than sharepoint server to install workflow manager ?

    Hi ,
         I have installed sharepoint 2013 on a single server with a built-in-database. And i have installed OWA in another virtual machine. Now i am trying to create a workflow. I have downloaded and installed sharepoint designer and workflow
    manager in the sharepoint 2013 itself. Do i need to install workflow manager in another server and make it to communicate with sharepoint server ? And how to email-id in workflow when i tried in sharepoint designer we have select the user. How to allocate
    e-mail id for users ?

    Creating new VM is choice of your architecture. Workflow Manager only requires below.
    Workflow Manager 1.0. Email ID will be automatically picked from the participants from AD.
    .NET Framework 4 Platform Update 3 or .NET Framework 4.5
    Service Bus 1.0
    Workflow Client 1.0
    PowerShell 3.0
    The following additional requirements must be met before you can run Configuration Wizard to configure Workflow:
    Instance of SQL Server 2008 R2 SP1, SQL Server Express 2008 R2 SP1, or SQL Server 2012.
    TCP/IP connections or named pipes must be configured in SQL Server.
    Windows Firewall must be enabled.
    Ports 12290 and 12291 must be available.
    Bala

  • Mint 17 with 2 virtual machines losing network connectivity

    Ethernet
    

    For one, I am the only person in our 5 person IT group that likes to use Linux. I am still learning though. I have been using Linux at home for only about a year. So please bear with me, as I'm possibly about to give too much info.
    The computer is used for our night dispatcher to watch the security cameras. The security software we use is Geovision and on the dispatchers end it is DM Multiview. We have two servers that have the Geovision software, for two different locations. SO in order to view the two different servers, we have to have two machines with multiview. Also Geovision apparently does not like linux and it does not work in Wine either.
    The computer only has 4 gigs of ram in it so i thought i would solve this by using a linux host and two virtual xp machines. (i know i shouldn't be using xp but i dont have a lot of choice)...
    This topic first appeared in the Spiceworks Community

Maybe you are looking for