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

Similar Messages

  • Can I shutdown my App Collection of Azure RemoteApp like Azure Virtual Machine ?

    Can I shutdown my App Collection of Azure RemoteApp like Azure Virtual Machine ?
    I want to suspending billing of Azure RemoteApp dualing the weekend.
    Azure Virtual Machine can suspending billing by shutdown it.
    I want to do for Azure RemoteApp.
    Regards,
    Yoshihiro Kawabata

    Hi Yoshihiro,
    Unfortunately you cannot shut down an App Collection in order to suspend billing over a weekend.  Please see the following page for details on Azure RemoteApp Pricing:
    RemoteApp Pricing
    http://azure.microsoft.com/pricing/details/remoteapp/
    I recommend you suggest this on the
    Azure RemoteApp feedback forum.
    Thanks.
    -TP

  • 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

  • SQL Server Business intelligence edition on Azure Virtual Machine

    Hello, Does anyone know when can a virtual machine with the SQL Server Business Intelligence Edition will be available? (it's that edition that I'm interested in, not standard, web or Enterprise that are the current editions available) , also In
    that moment will that SQL BI edition be available using SPLA SAL License as well?
    Regards
    GRR

    Hi,
    It seems that some features of SQL server BI Features are installed on the SQL Server Virtual Machine Gallery Images. For more detailed information, please refer to the link below:
    SQL Server Business Intelligence in Windows Azure Virtual Machines
    Best regards,
    Susie

  • MSDN Checkbox in Azure Virtual Machine Gallery disabled

    Dear all,
    In Azure Virtual Machine Gallery the MSDN checkbox remains disabled although I successfully linked a Visual Studio Online account with an active MSDN subscription (VS Premium), both referring to the same login/administrator account.
    So I am not able to add a VS 2013 Premium virtual machine in Azure.
    Have I missed something?
    Thanks for your help,
    Denis

    Hi,
     Thanks for posting.
     Have you tried switching subscription to the VS Premium with MSDN
    Refer to the following thread.
     http://social.msdn.microsoft.com/Forums/en-US/cdb13f71-7aff-4eb2-8265-d85b00d6215e/msdn-gallery-virtual-machines-check-box-grayed-out?forum=windowsazurepurchasing
    Managing multiple subscriptions in Windows Azure
     http://bjorneriksen.blogspot.in/2013/09/managing-multiple-subscriptions-in.html
    Let us know if this helped.
    Regards,
    Nithin.Rathnakar

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

  • Is it possible to install SharePoint 2013 and SQL 2012 on single Azure Virtual Machine

    I had a Azure subscription, I need had created only one Virtual Machine, is it possible to install SharePoint 2013 and SQL Server 2012 on that single virtual machine in azure.
    I had SharePoint 2013 and SQL Server 2012 licence from MSDN subscription,
    Finally on Azure virtual machine is it possible to Install SharePoint 2013 and SQL server by downloading these software from MSDN. 

    Hi,
    It is supported to install sharepoint 2013 and SQL server on the same server. However, please check the size of your Azure VM and make sure it is compatible for that.
    The minimum recommended size for a virtual machine is A3 when using SQL Server Enterprise Edition. Select A3 or higher when using SQL Server Enterprise Edition. Select A4 when using SQL Server 2012 or 2014 Enterprise Optimized for Transactional Workloads
    images. Select A7 when using SQL Server 2012 or 2014 Enterprise Optimized for Data Warehousing Workloads images. In addition, the default size for SharePoint 2013 image is A3.
    In addition, as a best practice, you can install them in different servers and then deploy SharePoint 2013 with SQL Server AlwaysOn Availability Groups in Azure:
    Deploying SharePoint 2013 with SQL Server AlwaysOn Availability Groups in Azure
    http://msdn.microsoft.com/en-us/library/azure/dn275959.aspx
    Best regards,
    Susie
    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]

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

  • OS X Remote Desktop is not working with Azure Cloud Machines or Azure Pack Machines

    Hi,
    i can't connect to any Machine via Console. I'm Working with Machines in Azure Pack and in Cloud. The connection causes a Authentication Loop.
    Best Regards

    Hi,
    In addition, here are some related Azure forums below for you:
    Azure Virtual Machines Forum
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=WAVirtualMachinesforWindows&filter=alllanguages
    Azure Management Portal Forum
    https://social.technet.microsoft.com/forums/azure/en-US/home?forum=windowsazuremanagement&filter=alltypes&sort=lastpostdesc
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Forgot Azure Virtual Machine Password

    Hi Team,
    I have forgot the Azure VM password and unable to connect the machine through RDP. Please help me so that I can connect with my VM. This is an urgent issue please help me. Thanks in Advance.

    Hi,
    You can follow these steps to reset the existing built-in local Admin credentials on Microsoft Azure virtual machines using Windows PowerShell and the Microsoft Azure PowerShell Module.  Note that this process will also ensure that Remote Desktop is enabled
    within the Microsoft Azure VM.
    >>In the Windows PowerShell ISE window, run the following PowerShell cmdlet to confirm the name of your Microsoft Azure subscriptions (if you have more than one subscription).
    Get-AzureSubscription | Format-Table –Property SubscriptionName 
    You’ll be specifying the name of your selected subscription in the next step.
    >>In the Windows PowerShell ISE window, run the following PowerShell cmdlets to select your Microsoft Azure subscription (if you have more than one subscription).
    $subscription = “ENTER YOUR SUBSCRIPTION NAME HERE” 
    Select-AzureSubscription –Default $subscription
    >>In the Windows PowerShell ISE window, run the following snippet to prompt for the credentials to which you’d like to reset the existing built-in local Admin user account inside the virtual machine.
    $adminCredentials = Get-Credential -Message "Enter new Admin credentials"
    If the existing built-in local Admin username is input, the snippet below will reset that account to use the specified password.  If a new username is input, the snippet below will also rename the existing built-in local Admin account to match the specified
    username. 
    The password that is input when prompted above must meet password complexity requirements of at least 3 of the following: 1 UPPER case letter, 1 lower case letter, 1 number and/or 1 symbol.  Note that if the password does not meet complexity requirements,
    the snippet below will still succeed - the password complexity requirements are not checked until after the VM restarts and the VM Agent is leveraged to apply the new password.
    >>In the Windows PowerShell ISE window, run the snippet below to reset the built-in local Admin credentials for the selected Azure virtual machines.
    (Get-AzureVM) | 
    Where-Object -Property Status -EQ "ReadyRole" |
    Select-Object -Property Name, ServiceName |
    Out-GridView -Title "Select a VM …" -PassThru |
    ForEach-Object {
        $VM = Get-AzureVM -Name $_.Name -ServiceName $_.ServiceName
        If ($VM.VM.ProvisionGuestAgent) {
            Set-AzureVMAccessExtension -VM $VM `
                -UserName $adminCredentials.UserName `
                -Password $adminCredentials.GetNetworkCredential().Password `
                -ReferenceName "VMAccessAgent" | 
            Update-AzureVM
            Restart-AzureVM -ServiceName $VM.ServiceName -Name $VM.Name
        } else {
            Write-Output "$($VM.Name): VM Agent Not Installed"
    Let’s look at each line from the snippet above in a bit more detail …
    First, Get-AzureVM is used to enumerate the existing VM’s that are provisioned in the selected Microsoft Azure subscription. We can only reset the built-in local Admin credentials on Running VM’s, so we pass this output to a Where-Object filter to return just
    the list of VM’s that are currently in a ReadyRole state.
    We pipe this filtered list of running VM’s to the Out-GridView cmdlet. This cmdlet prompts to select the VM’s for which the built-in local Admin credentials should be reset.
    Finally, the selected VM’s are piped into a ForEach-Object block that resets the built-in local Admin credentials for each selected VM using the Set-AzureVMAccessExtension cmdlet. This block also restarts each selected VM using the Restart-AzureVM cmdlet, so
    that this change is processed.
    Hope this helps !
    Regards,
    Sowmya

  • Custom Domain name for Azure virtual machine using azure websites

    Hie, I am using a cloud service (e.g cloud1) and it has a hosted VM in it (Windows server 2012). It is having a URL cloud1.cloudapp.net. So I want to use the domain name (e.g azuresite1.azurewebsites.net)created from azure.
      So how do I add the Cname record and everything in this setup .
      I already tried to use
    this but that didn't work
     What additional steps are required to add custom domain name to an azure virtual machine and, the custom domain name is also an azure website

    If you want to use azuresite1.zurewebsites.net then i think, you have to create a azurewebsite. If you have a custom domain then following should work.
    You have findout the IP that is attached to the VM. 
    Point your domain name to that IP (using domain dashboard)
    Now your domain points to whatever the site hosted on the VM (port 80)
    If you have more sites then, you have specify HostName for the site which you want to use with domain name.
    Try and let me know if this helped.

  • How many concurrent users are allowed for an Azure Virtual Machine?

    How many concurrent users are allowed for an Azure Virtual Machine?
    Please share the details with the Azure VM size. Currently I have Standard VM of size D13(4 cores, 28GB RAM)

    Hi SanPSK,
    Thanks for posting here.
    I suggest you to check this article for Azure VM size
    https://msdn.microsoft.com/en-us/library/azure/dn197896.aspx
    For the concurrent users on VM - A maximum of 2 concurrent connections are supported, unless the server is configured as a Remote Desktop Services session host.
    Girish Prajwal

  • Our HDB tool  just stopped connecting to the Azure virtual machine

    Our HDB tool just stopped connecting to the Azure virtual machine while it is working fine on AWS. The error we are getting is:
    "HDB -system state cannot be determined. Database connection is not available."
    Any suggestions/comments from the community?
    Thank you
    Koushik

    Update as promised.
    I just went ahead and created a new VM.  All is good!!!!
    Server 2012 (Datacenter)
    Downloaded and installed SQL Server 2012 Standard (Basic install only need the DB engine)
    Configured for mixed mode, etc.  (I did not need to change anything after the install was done)
    Opened endpoints and VM firewall ports
    Tested and worked as expected
    Then went ahead and installed IIS, Web Deploy and updates.
    All is working as expected.  Not sure what I messed up the first go around.
    If anyone comes across this and the docs don't help, just try to set up a new VM (either SQL or Server and install SQL).

  • 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

  • Can I backup some Azure Virtual Machines at same recovery point by Azure Backup ?

    Can I backup some Azure Virtual Machines at same recovery point by Azure Backup ?
    I want to recovery some related Azure Virtual Machines at same recovery point.
    Senario:
    Azure Virtual Machine 1. some servers for Web servers.
    Azure Virtual Machine 2. a server for SQL server.
    Azure Virtual Machine 3. a server for File server.
    Regards,
    Yoshihiro Kawabata

    Hi Yoshihiro,
    Azure IaaS VM backup is a VM level backup and each VM backup will create its own recovery point.  You can trigger backups in a staggered fashion typically you backup SQL, File server followed by web server, but there is no way to make it a single recovery
    point.  Are there any specific reasons you need this capability?
    Thanks,
    Vijay

Maybe you are looking for

  • Nano shuts down iTunes

    Hi, I have just got a new iPod nano (2nd Gen 2 gig) and following the instructions, left it connected for 3 hours. Now whenever I try to click on a folder in iTunes to move some music to the Nano manually it shuts iTunes - actually it's not quite a s

  • DVD Playback Freezing and Skipping

    I know there have been a million posts on this topic (I've perused many of them), but I thought I would post my own specifics in hopes of getting an answer that might help. I have a 62 minute video project (high school football highlight video) that

  • Code Page Question?

    Hello All, I am using Oracle 11.2.0.3.0 version, my database code page is as shown below. SELECT USERENV ('language') FROM DUAL; AMERICAN_AMERICA.WE8MSWIN1252May i please know if the DB is compatible to load the Unicode characters? Is" AMERICAN_AMERI

  • Install own BW system

    Hi together, I have got a question. I want to set up my own BW system for personal training and testing. Is this possible at all? What minimum hardware requirements are there? Does SAP gives out training licenses for personal use? Or do I have to buy

  • After upgrading to Lion, iCal doesn't sync with MobileMe

    After my upgrade to the new Lion OS X, the iCal doesn't sync properly with MobileMe; events from MobileMe will go to iCal but they will not go from iCal to MobileMe. In System Preferences/Internet & Wireless/Mail, Contacts & Calendars: I've tried rei