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
0
votes
1 answer

Setting up Capistrano to deploy to Azure Ubuntu VM

I am following this guide, and I am at the step where I attempt to do cap deploy:cold. I get the following error: ** [out :: vm.cloudapp.net] env: /etc/init.d/unicorn_app ** [out :: vm.cloudapp.net] : No such file or directory command finished…
TheDude
  • 3,796
  • 2
  • 28
  • 51
0
votes
2 answers

On Windows Azure is there a difference between VM role and vm instances?

In windows azure I see references to vm roles and vm instances. Are they different ? one it seems is to allow uploading of a vm image for use in the platform as as a service (PaaS) and the other allows on demand creation of vm images for…
MikeJ
  • 14,430
  • 21
  • 71
  • 87
0
votes
1 answer

Unable to call google api from Azure virtual machine

Public Class Geocode Public Structure GeocodeResult Public Latitude As String Public Longitude As String Public Result As String End Structure Public Shared Function GetGeocode(ByVal Address As String) As GeocodeResult Dim strLat…
Nathan
  • 1
  • 2
0
votes
1 answer

When can we say that two Azure Virtual machines are Load balanced

I have certain doubts about load balancing VMs in Azure. When i add a vm to an existing deployment(already running VM) it assigns the same dns name to the added VM but there is no Virtual IP assigned to the VM. But the port shows load balanced VM.
Krithika Vittal
  • 1,477
  • 2
  • 16
  • 32
0
votes
3 answers

sysprep failure on Windows Server 2008

Before deploying a Azure VM Role, we need to perform %windir%\system32\sysprep\sysprep.exe /generalize /oobe /shutdown But in my case the sysprep fails with the log file %windir%\system32\sysprep\Panther\setuperr.txt saying: 2012-07-05 08:03:57,…
0
votes
1 answer

Azure VMs restart unexpectedly

This is a problem is related to worker role hosted VM. I have a simple worker role, which spans a process inside of it. The process spawned is the 32 bit compiled TCPServer application. Worker role has a endpoint defined in it, the TCPserver is…
Pavan
  • 1,023
  • 2
  • 12
  • 25
0
votes
3 answers

balancing vM in azure

For my project i have to do deploy two(or more distances)VM instances in azure. I want at the start to be active just the first instances, and after some people "visiting" (example 2000) then if it comes the 2001 person to come active the second…
Aviator
  • 92
  • 1
  • 10
0
votes
2 answers

Access page in VM image and not VM Role?

I have my VM image with Sharepoint 2010 deployed to Azure , have create VM role hosted service to access it. What URL should I give to access page in my VM Image and not VM Role.by default it gives a URL for VM role that just opens the IIS page but…
-1
votes
1 answer

cannot connect to SQL with managment studio

I created a virtual machine with SQL in Azure. but I can't connect with management studio (SSMS) from out of my VM any idea?
-1
votes
2 answers

Why do we need extensions in azure VM?

when we can manually connect to remote desktop and install software we desire, why we need extensions? Custom Script extension and Desired State configuration works same way. They run the same powershell script. why do we need many extension that…
-1
votes
1 answer

Connecting AZURE Ubuntu Server using CLI

Recently I deployed two virtual machine WIN 10 and WIN Server 2012 which is easily to connect through GUI. Now I need to host the WordPress site on Ubuntu server using CLI. I have installed azure cli and run basic command like azure login, azure…
-1
votes
1 answer

Finding azure Availability sets using Azure in classic mode

I am trying to find the availability sets in a Azure Cloud Service using powershell. The Cloud Service was created using classic model. I am not sure if this is the right answer: get-AzureService -ServiceName "myService"
-1
votes
1 answer

Azure Ubuntu VM - Connect Button Disabled

I've created a VM of Ubuntu-16.04 LTS using Resource Manager. VM has been created successfully but the connect and start buttons are disabled. In tutorials, the connect button is already enabled once the VM is created.
-1
votes
1 answer

What can I do if I'm stuck RDP to my Azure VM?

We set up a VM on Azure used just like a normal VM therefore lots of data our on the VM, however this morning the VM suddenly stopped working - I guess there's something wrong inside (possible harddisk full or windows service issue) How can I fix…
Lida Weng
  • 476
  • 6
  • 20
-1
votes
1 answer

Why isn't the public IP address contactable

I just spun up a VM on Azure, then set up IIS with the usual defaults, and the usual default website. When logged on to the server (2008 R2) with Remote Desktop, I can enter in the public or internal IP address and see the default IIS 7…
Greg Gum
  • 33,478
  • 39
  • 162
  • 233