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
2 answers

Azure DevOps pipeline error - The value of parameter linuxProfile.ssh.publicKeys.keyData is invalid

I created a ARM template for automatic AKS creation and/or updates. I generated a RSA public key using the Azure bash command line and entered it in the ARM template. I use the template in an Azure DevOps pipeline. Deployment failes. with the error…
4
votes
1 answer

Unable to access flask server hosted on azure VM

I have a flask server hosted on my azure vm. if __name__ == '__main__': app.run(debug=True, host="127.0.0.1", port=4400) On vm, I can access the server via the address 127.0.0.1:4400 Now I want to be able to access this server from outside the…
hsnsd
  • 1,728
  • 12
  • 30
4
votes
1 answer

Polybase doesn't create external file format

I get the good old Incorrect syntax near 'EXTERNAL'. error. I am exactly doing what this answer describes. But SQL Server returns the aforementioned error when I come to this code-chunk: CREATE EXTERNAL FILE FORMAT csvformat WITH ( …
5th
  • 2,097
  • 3
  • 22
  • 41
4
votes
2 answers

Azure VM: the user account used to connect to remote PC did not work

I have an Azure Virtual Machine connected with Azure Active Directory. A user from this AD is added to this machine as an admin. Other people can successfully RDP to the machine with this user's credential, but I get error saying "The user account…
Alex Sikilinda
  • 2,928
  • 18
  • 34
4
votes
1 answer

Azure VM gets disconnected from network very often

I have a Windows service running on Azure VM. The service constantly accesses KeyVaults and Web APIs to run some tasks. The logs in my service show this message sometimes while accessing keyvault. Most of the times service can access keyvault, but…
CrazyCoder
  • 2,194
  • 10
  • 44
  • 91
4
votes
1 answer

Windows VM in Azure stuck at "Hi There"

I am having problems reconstituting a Windows Server 2016 VM from a VHD. I allocate a new Windows Server 2016 VM using unmanaged disks. After it is up and running, I load my software onto the VM. Then I test it. Finally I sysprep it (OOBE,…
djhallx
  • 690
  • 6
  • 17
4
votes
1 answer

Can virtual network be in different Resource Group while creating a VM in Azure

I want to create the virtual machine on VM in ABC resource group from Image1 which is also in ABC resource group using powershell. Now The problem I'm facing is that the virtual network is in different Resource Group say XYZ.So I have tried…
4
votes
1 answer

Run command in linux vm in azure using python sdk

I have found that azure python sdk has provided following method for running command in linux vm. from azure.mgmt.compute import compute_management_client from azure.common.credentials import ServicePrincipalCredentials credentials =…
Suraj Shrestha
  • 728
  • 11
  • 19
4
votes
2 answers

Azure VM with VPN

This is more one for curiosity and learning. I currently have an Azure VM (Windows 2016 and SQL 2017) which I just use for R&D. The RDP port is enabled - no big deal as there is nothing top secret. But just to learn more about Azure I wanted to…
4
votes
2 answers

Creating a new user on Azure VM that is not part of an Active Directory

How do I create a new user that can login to my Azure VM as an administrator? My top google search result mentions Active Directory. This particular machine is not on a domain. I tried creating the user under computer management and I get an…
Bill Greer
  • 3,046
  • 9
  • 49
  • 80
4
votes
2 answers

Difference between Azure availability sets and placement groups

I would like to know the difference between the two. I dont find a specific explanation and also there is no specific documentation pertaining to Placement groups. It is always explained in relation to an Availaibilty set similar to the link belo.…
Vikram
  • 543
  • 7
  • 20
4
votes
1 answer

is it possible to run KVM on Azure

Azure Fabric runs on a customized version of Hyper-V, it appears. Is it possible to run a KVM virtualized instance on Azure (using nested virtualization)? I have a custom VHD which is based on Debian (say). Based on this document…
toppur
  • 1,606
  • 13
  • 12
4
votes
1 answer

Host Sub Application to main application with out change the URL

I have one doubts, Please clarify this We have currently host the one sub application to under main application. like below URL like www.Examples.com/internal internal is a sub application hosted under Examples main application. But, i want to…
4
votes
3 answers

What tools can I use to migrate infra from AWS to Azure automatically?

I have my Application running on AWS containing component as: Multiple EC2 Instances (3 RHEL as Application Server, 1 Ubuntu as a File Server, 1 Ubuntu as a CronJob Server, 1 Windows as Bastion). MySQL RDS Instance. Barracuda WAF as an Instance…
4
votes
1 answer

The address space '10.0.0.0/16' overlaps with '10.0.0.0/16' in virtual network 'ABC'

I have created two Virtual Networks in the same region but in a different resource group. But still, I'm getting a warning like The address space '10.0.0.0/16' overlaps with '10.0.0.0/16' in virtual network 'XYZ-VNET'. I referred to this link…