Questions tagged [azure-virtual-machine]

IaaS service provided by Microsoft Azure to host custom persistent virtual machines running Windows Server or Linux.

Microsoft Azure Virtual Machine enables you to create a server in the cloud that you can control and manage. After you create a virtual machine in Microsoft Azure, you can access it like any other server and you can delete and re-create it whenever you need to. You can use a virtual machine in Microsoft Azure to deploy Windows OS images or various distributions of Linux operating systems.

Virtual Networks are available to connect these Virtual Machines together, and to your existing in-house infrastructure.

Note: Microsoft Azure Virtual Machine (which is IaaS) should not be confused with Microsoft Azure Cloud Services VM Role (which is PaaS and was retired 31st May 2013).

For more information, see http://msdn.microsoft.com/en-us/library/windowsazure/jj156003.aspx.

2399 questions
10
votes
2 answers

Hosting website on Azure Virtual Machine

Yesterday I created an Azure Virtual Machine using the simple Win2008r2 + SQL2008r2 image. I have deployed a website to the VM via an RDP session. I am able to browse the website locally (via RDP) using "http://localhost" I understand that I need…
Rob Bowman
  • 7,632
  • 22
  • 93
  • 200
10
votes
1 answer

Lock down access to Azure VM to specific IP

We're planning to sign up for the Azure VM trial as soon as it comes out of preview. In the meantime however, can someone please clarify the following? Currently users can access an Azure VM instance using a Remote Desktop Connection (RDC). Is it…
EvilDr
  • 8,943
  • 14
  • 73
  • 133
9
votes
2 answers

IIS/HTTP Endpoint on Azure VM (non-classic)

With the classic Azure VMs, one set up IIS on an Azure VM and then went to the (old) portal and set up an HTTP endpoint for it. On the new VMs, this is apparently done through the Network Security Group in the (new) portal as described here: How I…
jleach
  • 7,410
  • 3
  • 33
  • 60
9
votes
5 answers

Is there any way, that I can make Android Emulator run on Azure Virtual Machine?

I installed Android Studio on Azure VM and installed all the prerequisites. When I try to run the emulator, I get the following error When I try to install HAXM, I get the following error: I checked that my Azure VM runs on AMD Processor. Is there…
9
votes
2 answers

How to Bulk-Add Azure endpoints?

I've got an FTP server running on Azure. I had to manually add in 20 endpoints for the 'data' connection. It was painful. Surely there's a better way to bulk add endpoints to an Azure VM, somehow? If so, could someone list some instructions? I'm…
Pure.Krome
  • 84,693
  • 113
  • 396
  • 647
9
votes
1 answer

Retain Public Virtual IP Address?

When you reboot an Azure Virtual Machine, its public virtual IP address does not change. However, if you shutdown the VM and then start it back up, it will receive a different public virtual IP address. This VM server is hosting a service which end…
Bob
  • 91
  • 1
  • 2
8
votes
3 answers

How to change time zone in Azure Virtual Machine?

How to change the time zone from UTC to Arabian Standard Time in Azure virtual machine running the windows server?
Mohammed
  • 193
  • 2
  • 2
  • 9
8
votes
2 answers

azure virtual machine persistent SSD warning DATALOSS_WARNING_README.txt

Created a Standard DS1 virtual machine in Azure. It is supposed to have a 7GB SSD disk which is mounted on /mnt. df -h Filesystem Size Used Avail Use% Mounted on /dev/sda1 29G 1.5G 27G 6% / none 4.0K 0 4.0K 0%…
neo112
  • 1,703
  • 2
  • 17
  • 39
8
votes
2 answers

Connection timeout port 80 on new Azure VM with NSG rules configured

I just created a new Ubuntu 14.04 virtual machine in Microsoft Azure using the (recommended) resource manager deployment model. The following screenshots show the deployment configuration and the resulting resources: Once it was deployed, I…
8
votes
2 answers

Azure Files preview - access shared folder in IIS and FileZilla

I'm interested in load balancing 2+ Windows VMs in Azure. My primary requirement, though, is that an 'uploads' folder would need to be consistent between each VM. Files in this folder are FTPed by our admin users, and they would then need to select…
Steve Owen
  • 2,022
  • 1
  • 20
  • 30
8
votes
4 answers

node which port / ip address to listen to for azure ubuntu vm

I've got an Ubuntu virtual machine on Azure. I added an enpoint in the azure management portal: NAME PROTOCOL PUBLIC PORT PRIVATE PORT LOAD-BALANCED SET --------------------------------------------------------------- HTTP TCP 80 …
AJcodez
  • 31,780
  • 20
  • 84
  • 118
8
votes
3 answers

Azure VM pricing - Is it better to have 80 single core machines or 10 8-core machines?

I am limited by a piece of software that utilizes a single core per instance of the program run. It will run off an SQL server work queue and deposit results to the server. So the more instances I have running the faster the overall project is done.…
shawn.mek
  • 1,195
  • 1
  • 11
  • 17
7
votes
2 answers

Azure VMSS instance "Latest model" meaning

When I look into my VMSS in Azure, and enters the "instances" blade, for each instance there is a property "Latest model" which can be either "No" or "Yes". What does this property mean? I couldn't find any documentation about it.
user14236339
  • 71
  • 1
  • 3
7
votes
1 answer

terraform: add public IP to only one azure VM

I'm creating 4 vms through count in azurerm_virtual_machine but i want to create only one public IP and associate it with the first VM ? is that possible if so how ? below is my template file resource "azurerm_network_interface" "nics" { count …
7
votes
1 answer

Azure App Service slow compared to Azure VM

I have an ASP.NET Core system (based on NopCommerce framework) hosted on Azure VM (Standard F8s_v2 size). The application runs pretty smooth. Average response times are around 200 ms which is acceptable. Very same application was hosted on Azure App…