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
4
votes
3 answers

Neo4j on Microsoft Azure Deployment template validation failed?

EDITED My azure subscription is Visual Studio Enterprise: BizSpark When trying to configure neo4j on Microsoft Azure by following the guide explained on How to Deploy Neo4j on Microsoft Azure Step-by-Step On Step 2: Neo4j Settings... there is no SSL…
4
votes
1 answer

How to remove Azure On-Premises Data Gateway connection gateway installations?

the Azure On-Premises Data Gateway got installed with the wrong Azure region settings on a Virtual Machine in Azure. After uninstalling the on-premises Data Gateway, the original connection gateway installation is not removed and a new one with the…
Jeroen T.
  • 141
  • 2
  • 9
4
votes
2 answers

What are Resource Disks in Microsoft Azure?

What is the definition of a resource disk in Microsoft Azure? I see the term used in the response to my REST call to get the available Virtual Machine sizes. The documentation says that "ResourceDiskSizeInMB" specifies the size in MB of the…
Gleb Billig
  • 157
  • 3
  • 8
4
votes
1 answer

Is there a way to view blobs of managed disks in Microsoft Azure Storage Explorer or the Azure Portal?

When I create a VM using Azure Resource Manager with an unmanaged disk, I can view its .vhd in Microsft Azure Storage Explorer and/or the Azure Portal under the specified storage account's Blob Container in a sub-container called "vhds". When I…
4
votes
2 answers

Adding SSD data disk to Azure classic VM and moving PSQL database files to it

I use Azure infrastructure to host a Django/Postgresql application. The app and the db are on separate VM. Each VM has Ubuntu 14.04, and it's the classic flavor. I've been using the OS disk for my db's storage (capacity: 30GB). This was fine in the…
Hassan Baig
  • 15,055
  • 27
  • 102
  • 205
4
votes
2 answers

Azure VM scale set auto-scale scale down notifications

I have a VM scale set that I want to set up auto-scaling for and I want to know how abrupt scaling down is. Before VMs get destroyed, I want to make sure any active long-running requests complete. Is this possible? I am curious about the…
gregjhogan
  • 2,095
  • 19
  • 21
4
votes
3 answers

Cannot list directory on IIS FTP server on Azure, even after configuring Azure inbound rules and Windows firewall

I'am running Windows Server 2012 in Azure, and I've configured the FTP server in IIS. When I try to connect the server, it accepts the username and password and log me in but not showing the directory listing. I've tried using FileZilla FTP client…
4
votes
1 answer

Azure VM Scale Sets Internal Loadbalancer

Is it possible in any to create a VM Scale Set with an internal load balancer using private IP for the Front end instead of a public IP?
Tobias Dawes
  • 41
  • 1
  • 2
4
votes
2 answers

Azure Load Balancer + NSG Rules - Remove Access Directly

I've got a networking question for one of my customers servers in the cloud. We are using just a standard 2012R2 VM with a few endpoints set up through the NSG Firewall, and we have a LoadBalancer infront of the network with a few ports forwarded to…
4
votes
2 answers

Any way to upload file to azure virtual machine from external application

I have a windows application and I want to upload a file from this windows application to azure virtual machine data disk or os disk. I need this because there is some process(run by third party add-on) which work on azure virtual machine ,that…
Krishna_K_Batham
  • 310
  • 1
  • 4
  • 10
4
votes
2 answers

I would like to change Microsoft Azure Virtual Machine size without losing my data

I am using two Microsoft Azure Virtual Machines (marked as classic), both running on Linux. One is used for test purposes and internal demos, the other is production and running few of clients' instances. What I would like to do is change the size…
Nik
  • 73
  • 8
4
votes
1 answer

Azure Virtual Machine CPU Cores Limit

When I try to deploy a new virtual machine in my Azure portal I get the following error at deployment time. Deployment to resource group 'Testing' failed. Additional details from the underlying API that might be helpful: At least one resource …
Paul Andrew
  • 3,233
  • 2
  • 17
  • 37
4
votes
1 answer

Is it possible to downgrade a premium storage subscription while keeping Azure virtual machine intact?

I have a virtual machine in the cloud at Microsoft Azure. Currently I have a premium storage subscription. I want to downgrade this subscription to a cheaper storage solution while leaving the virtual machine intact. Would this be possible?
Marcel
  • 115
  • 2
  • 15
4
votes
2 answers

Get-AzureRMVmImage cmdlet doesn't list all the available vm images

I am trying to get all the available VM images for AzureRM using Get-AzureRMVMImage and it doesn't list any images like the command Get-AzureVMImage If I follow the example given on the help for Get-AzureRMVmImage then it doesn't list that Ubuntu…
4
votes
2 answers

How to get list of Azure VMs (non-classic/Resource Managed) using Java API

How to get list of VMs (non-classic) using Java API, which are created using resource Manager? Why we need tenant id, client id and client key to create 'com.microsoft.azure.management.compute.ComputeManagementClient' object? Can it be done using…