azure-virtual-machine

New Azure portal (no End Points) how to connect to VM with RDP from behind a firewall

六眼飞鱼酱① 提交于 2019-12-07 09:00:58
问题 I've created a VM (non-classic, using Resource Manager) in new Azure portal but I need to connect from behind a firewall. I've found a bunch of articles explaining how to solve it by editing an Endpoint settings for RDP, but in the new portal there is nothing like this! Inbound and Outbound rules are just firewall rules as I understand and it gives nothing. I've connected to it from home and tried to change RDP listening port to something not blocked by firewall with following power shell

Neo4j on Microsoft Azure Deployment template validation failed?

无人久伴 提交于 2019-12-07 08:44:34
问题 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 certificate options, VM options as explained on the guide after clicking OK ..... the following error showed up, stating InvalidTemplate Deployment template validation failed: 'The value for the template parameter 'SubnetName' at line '56' and

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

我是研究僧i 提交于 2019-12-07 08:28:48
问题 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? 回答1: What you're trying to do is not supported today. Changing from Premium to Standard is not possible today. What you have to do is copy the VHD from your Premium storage account to a new or existing Standard storage account and create a new Virtual

Public Static IP for Azure VM [closed]

霸气de小男生 提交于 2019-12-07 07:40:13
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . Is there any ways to assign public static IP for Azure VM ? Do I have to do through the Azure Virtual Network or I need to do it when setting up the VM? Would appreciate that if somebody could provide me some tutorial and steps to achieve it. Thank you. 回答1: EDIT : use the " New-AzureReservedIP " powershell

Cannot Delete Virtual Network Gateway in Azure

核能气质少年 提交于 2019-12-07 05:19:11
问题 I am attempting to delete a virtual network in Azure. When I use the web interface to delete it, it says Virtual network 'MyVirtualNetwork' is in use and cannot be deleted. If you recently deleted resources, it might take some time to update the virtual network. Of course, I didn't recently delete resources and there are no VMs using the network. I followed this StackOverflow post here which says that in order to delete a Virtual Network, you must first delete the Virtual Network Gateway. So,

Windows Azure VM (Iaas) unexpected restarts [closed]

北慕城南 提交于 2019-12-07 03:59:18
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I have a number of VMs on Windows Azure (Iaas) hosting a website. There are a number of load-balanced front-end VMs, all connecting to a single VM with SQL Express. It works well. However! I'm getting random restarts across all the VMs. As for the front-end VMs (with IIS), since they are load balanced, the site

Creating a managed disk from snapshot in different region (Azure)

試著忘記壹切 提交于 2019-12-06 16:16:44
问题 I seem to have a problem creating a managed disk from a snapshot. It appears that I can only create a disk in one region which is West US. Here is the PowerShell script I use: Get-AzureRmSubscription –SubscriptionName 'MySubscription' | Select-AzureRmSubscription $resourceGroupName = 'MyResourceGroup'; $diskName = 'MyNewDisk'; $location = 'West US'; $snapshotName = 'MySnapshot'; $snapshot = Get-AzureRmSnapshot -ResourceGroupName $resourceGroupName -SnapshotName $snapshotName; $diskConfig =

Upgrading from A-series to D-series Azure virtual machine

老子叫甜甜 提交于 2019-12-05 21:33:16
We have SQL Sever setup on A-series virtual machines. We are wanting to upgrade to the D-series virtual machine. Is it as simple as just upgrading the VM in Azure and clicking save or are there any other things I need to watch out for? I have heard of people having issues upgrading due to the level not being available in the cluster that their Virtual Machines sit in. Sowmya K R The hardware infrastructure used for A series VM is not suitable for D series VM. It might be possible that the cluster where the VM is hosted, has the hardware configuration required for creating A series VM alone.

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

爷,独闯天下 提交于 2019-12-05 18:05:34
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? What you're trying to do is not supported today. Changing from Premium to Standard is not possible today. What you have to do is copy the VHD from your Premium storage account to a new or existing Standard storage account and create a new Virtual Machine using that. UPDATE Can I copy my installed software in that case as well? Yes, when you copy your VHD

Azure: List OS Images

我们两清 提交于 2019-12-05 18:01:29
Im new to windows azure, Ive looked to this documentation , to me it works, Listing Images on gallery. https://management.core.windows.net/subscription-id/services/images But this isnt what Im looking for, Is there a way to list the My Images on my account and not the images on gallery. David Makogon If you run the PowerShell cmdlet Get-AzureVMImage , you'll see all images. As stated by @Gaurav, The ones that correlate to My Images have a PublisherName of User . So, again, using PowerShell, here's how to see just your images by piping to Where-Object : Get-AzureVMImage | Where-Object { $_