azure-virtual-machine

Neo4j on Microsoft Azure Deployment template validation failed?

眉间皱痕 提交于 2019-12-05 17:11:51
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 column '20' is not provided. Please see https://aka.ms/arm-deploy/#parameter-file for usage details.'.

Public Static IP for Azure VM [closed]

旧时模样 提交于 2019-12-05 16:20:23
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. EDIT : use the " New-AzureReservedIP " powershell cmdlet in the VM the verbose syntax looks like this: New-AzureReservedIP – ReservedIPName “MyWebsiteIP” –Label “WebsiteIP” –Location “Japan West” for more information, here's a relevant blog post about it: http://azure.microsoft.com/blog/2014/05/14/reserved-ip-addresses/ here's an msdn spec on

Cannot Delete Virtual Network Gateway in Azure

牧云@^-^@ 提交于 2019-12-05 09:54:20
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, as per the instructions "To delete a virtual network gateway" on MSDN here , I click through the Azure

Create VM from existing VHD: Preview portal

社会主义新天地 提交于 2019-12-05 09:53:38
Does anyone now how to create a VM from an existing VHD in the new azure portal ? I can find lots of info on how to do this in manage.windowsazure.com, but nothing on this functionality in portal.azure.com. It can't be done literally in the portal. You will have to use powershell. Create a storageaccount. For example in the portal. Upload the VHD to azure. To do this, run the following line in powershell after logging in with Login-AzureRmAccount (change the parameters between <> and the path to the vhd on your harddisk): Add-AzurermVhd -Destination "https://<StorageAccountName>.blob.core

Windows Azure VM (Iaas) unexpected restarts [closed]

女生的网名这么多〃 提交于 2019-12-05 07:04:19
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 is not affected and the load balancer adjusts accordingly. But when the VM hosting the database is

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

烈酒焚心 提交于 2019-12-04 20:45:14
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 = New-AzureRmDiskConfig -AccountType $storageType -Location $location -SourceResourceId $snapshot.Id

how to create windows virtual machine with 16gb ram

纵然是瞬间 提交于 2019-12-04 10:17:06
I am totally new to cloud services, and using Windows Azure, I need a web server and a database server, each with 16gb of RAM. However, the extra large windows virtual machines only have 14gb of RAM. How would I go about adding 2gb of RAM to each of these servers, or do I need to do something else, such as incorporate a SQL database? I don't need to know the specifics of installation, all I need to know right now is what needs to be paid for, as I am just trying to figure out the price for everything. Thank you. The Extra Large (XL) VM size provides 14GB available RAM. This applies to both

Azure VM: Adding a Reserved IP address to an existing VM

拟墨画扇 提交于 2019-12-04 09:19:30
问题 What I have read so far on the web is that there is no way to add a reserved IP to an existing VM (unless I recreate the VM which I am trying to avoid). However, I have noticed that external IP of my VM and the cloud service is same. Reserved IP Addresses page explains how to "To use a Reserved IP with Cloud Services". I have looked everywhere in the Azure Management Portal but couldn't find a configuration setting for Service Configuration Schema. I am using the Azure scheduler to turn-off

how to get cpu usage of azure vm throught powershell

杀马特。学长 韩版系。学妹 提交于 2019-12-04 06:57:52
问题 can we see the metrics of the CPU usage and other details of the VM through power shell. i am trying to write a power shell script to get all the details of the azure virtual machine it show some error can any one have idea about how to write a script to get the details. i am able to get the vm details Get-AzureRmVM -ResourceGroupName "RG" -Name "VM" -Status but i am not getting cpu usage for that i tried some table contents "WADPerformanceCountersTable" rule:- "\Processor(_Total)\% Processor

Create an Azure VM with an unmanaged disk

廉价感情. 提交于 2019-12-04 01:48:54
问题 I'm trying to create an Azure VM with an unmanaged disk via PowerShell since managed disks aren't supported in Azure Government yet. None of the documentation I could find for PowerShell VM creation references managed or unmanaged disks and the default seems to be managed disks. My VM creation fails with the following error: New-AzureRmVM : Managed Disks are not supported in this region. ErrorCode: BadRequest Here's the script I'm using: $location = "USGovTexas" New-AzureRmResourceGroup -Name