Questions tagged [azure-vm-role]

VMRole is another PaaS offering from Microsoft on the Azure platform. Like the Web/Worker role it is a Stateless machine. However developers are given more control over customizing the OS by supplying a preconfigured VHD image that is used to run the VMRole from.

Windows Azure VM Role is a Platform-as-a-Service (PaaS) offering from Microsoft. Like the WebRole and WorkerRole it is a stateless role, thus PaaS. The advantage of this type of offering is that one can avoid long-running installs of third party software, which usually runs in the Startup for a Web/Worker Role. Also the VM Role gives more freedom on customizing the OS that runs in the cloud (though currently only supported Windows Server 2008 R2 and Windows Server 2008 SP 1 x64). The role is being spinned up from preconfigured VHD image. One shall not forget that the VM Role is a stateless. This means that any and all changes made during the live of a VM will be lost upon service healing (if hardware fails and needs to be re-instantiated on another machine) just like the Web/Worker roles. This is true for the file storage also.

It shall not be confused with Windows Azure Virtual Machines, that came as offering in June 2012 and is still in CTP as of today (Sept. 2012).

More information on VMRole and Virtual Machines can be found here.

91 questions
632
votes
31 answers

"The certificate chain was issued by an authority that is not trusted" when connecting DB in VM Role from Azure website

I am experiencing an error when connecting MY DB which is in VM Role (I have SQL VM Role) from Azure Website. Both VM Role and Azure Website are in West zone. I am facing the following issue: SqlException (0x80131904): A connection was successfully…
ZafarYousafi
  • 8,640
  • 5
  • 33
  • 39
118
votes
4 answers

In Windows Azure: What are web role, worker role and VM role?

The application I work on contains a web role: it's a simple web application. I needed to host the application in Windows Azure, so I created a web role. I actually want to know what these roles are for. What is their significance coding wise or…
28
votes
3 answers

How temporary is Azure VM Temporary Storage?

When you create an Azure VM, it creates a D: drive named "Temporary Storage". It's unclear to me just how temporary this is though. Is it reset between reboots, start/stop, or just if the image is recreated? Or arbitrarily? Also, what are some…
Daniel
  • 3,021
  • 5
  • 35
  • 50
26
votes
4 answers

Does Azure offer https for "cloudapp.net"?

One great advantage of using Azure Websites is that I can get secure HTTP (HTTPS) without doing nothing: I simply type https://xyz.azurewebsites.net and it works. I don't have to worry about certificates because I use the subdomain that Azure gives…
sports
  • 7,851
  • 14
  • 72
  • 129
22
votes
7 answers

How can I get the SSH host key for a new Azure Linux VM created using PowerShell?

If I create an Azure Linux VM using PowerShell, how can I get its new SSH host key, so that I can install it in my local ssh/PuTTY? Preferably the solution is also PowerShell code.
Oliver Bock
  • 4,829
  • 5
  • 38
  • 62
18
votes
5 answers

Cannot SSH to Azure VM

I have a Ubuntu VM on Azure (Resource Group, not the Classic VM) and it all worked out of the box. I recently tried to SSH into the VM using Putty and I could not. I get the error: Network Error: Connection Timed out. I have made sure that the port…
11
votes
2 answers

Role instance name is not valid while restarting the VM

I an have 8 node cluster setup in the Azure virtual network. It was working fine until I shut down the virtual machines from the Azure Management Portal (shutdown icon/button). After I stopped two virtual machines last week, I could not re-start…
java_enthu
  • 2,279
  • 7
  • 44
  • 74
10
votes
3 answers

Looking for a .NET BuildServer SaaS

I've a question regarding Build Servers for .NET Projects. Currently I'm using TeamBuild in conjunction w/ TFS 2010 to do automated builds in the .NET world. Some older projects are built using plain old MSBuild scripts. To get rid of the…
Thorsten Hans
  • 2,675
  • 19
  • 21
7
votes
5 answers

Windows Azure: Delete disk attached to non-existent VM

Just found out I was taking up - and paying for - a lot of storage due to abandoned disks from long ago deleted VMs. I manged to delete most of them, but now I'm stuck with a set that cannot be deleted as they remain attached to VMs nowhere to be…
6
votes
3 answers

How can I find the name of the VM image used to create an Azure VM using PowerShell?

If I use Get-AzureVM (PowerShell cmdlet) to fetch a running VM then the fields I get back…
Oliver Bock
  • 4,829
  • 5
  • 38
  • 62
6
votes
1 answer

Azure Virtual Machine Start-Up task

We are creating a multi-tenant application and hosting it on Window Azure IaaS platform. We want to provision and configure all our virtual machines remotely using PowerShell. We don't want to RDP into VMs for any configuration. Does Azure VMs…
Gaurav
  • 895
  • 3
  • 14
  • 31
4
votes
1 answer

Can I host a website in Windows Azure VMRole

Does anyone know if one can host a website using the VMRole in Windows Azure? If I have IIS running on the VM can I access that from the outside? Also, if I scale to multiple instances of the same VM, will that endpoint be automatically load…
Zoran
  • 844
  • 1
  • 7
  • 15
4
votes
1 answer

Windows Azure VM cannot access microsoft.com

I have 2 VM's on Windows Azure, connected with a virtual network, including the "DNS" component linked to the virtual network. The first machine is an AD controller (with DNS), and the DNS from the virtual network (in Azure) is pointed to this…
4
votes
1 answer

Will Microsoft Lync run on Windows Azure Virtual Machine roles?

Will Microsoft Lync run on Windows Azure Virtual Machine roles running Windows? Azure now supports persistent virtual machines.
Ennova
  • 474
  • 4
  • 14
3
votes
0 answers

VM deployment from custom image stuck in 'Create' state

I logged into an existing VM, did sysprep, selected generalize + oobe, shutdown, waited for deallocation, then captured from the portal. I created an image from the generalized disk in the Azure portal, but when it tries to start, it gets stuck in…
1
2 3 4 5 6 7