Quantcast
Channel: Azure Virtual Machines forum
Viewing all 12545 articles
Browse latest View live

“VMware Player and Hyper-V are not compatible. Remove the Hyper-V role from the system before running VMware Player.”

$
0
0

When I try to run VMWare Workstation Player in MS Azure I get:

VMware Player and Hyper-V are not compatible. Remove the Hyper-V role from the system before running VMware Player.

I tried running DC Readiness cmdlet and turned off hyperV from Programs and Features. Also I turned off Public and private firewall settings.


But did nt help. Can you please suggest?


GPUs NotAvailableforSubscription for a Microsoft Azure Sponsorship 2 SUbscription

$
0
0

Hi,

I have tried launching GPU instances on Azure for a few weeks now unsuccessfully using the Microsoft Azure Sponsorship subscription. When I use the following command on powershell:

Get-AzComputeResourceSku | where {$_.Name -icontains "standard_nc6"}

the resulting list of virtual machines is:

virtualMachines Standard_NC6         eastus {3, 1} NotAvailableForSubscription MaxResourceVolumeMB 389120
virtualMachines Standard_NC6        eastus2      1 NotAvailableForSubscription MaxResourceVolumeMB 389120
virtualMachines Standard_NC6 northcentralus        NotAvailableForSubscription MaxResourceVolumeMB 389120
virtualMachines Standard_NC6 southcentralus        NotAvailableForSubscription MaxResourceVolumeMB 389120
virtualMachines Standard_NC6    northeurope      2 NotAvailableForSubscription MaxResourceVolumeMB 389120
virtualMachines Standard_NC6     westeurope {3, 1} NotAvailableForSubscription MaxResourceVolumeMB 389120
virtualMachines Standard_NC6  australiaeast        NotAvailableForSubscription MaxResourceVolumeMB 389120
virtualMachines Standard_NC6        westus2 {1, 3} NotAvailableForSubscription MaxResourceVolumeMB 389120
virtualMachines Standard_NC6        uksouth        NotAvailableForSubscription MaxResourceVolumeMB 389120

Is it that my subscription disallows GPU instances? 

Linux web app gets connection refused when trying to connect to a virtual machine

$
0
0

after using the VNET integratgion (preview), I'm testing the connection to a VM running in the same VNET. The NSG is alowing all Virtual Network to Virtual Network traffic but the connection fails with this error: 

Connecting to 10.0.58.12:9427... failed: Connection refused.

Any idea what is wrong?



Fix Exercise - Create a virtual machine

$
0
0

Fix;

We're sorry. The sandbox needed to complete the exercises in this module is temporarily unavailable.

Ubuntu Azure VM Public IP redirects to Internal IP

$
0
0

Hi, I have installed a Webuzo Cpanel software on my Azure VM (Ubuntu).

Everything is ok I am facing a small issue. 

When I open my IP address

http://23.101.72.243:2004

It doesn't work and takes me to 

http://10.0.0.4:2004/install.php

I also installed it on DigitalOcean VPS and there it works fine.

It is something redirecting public IP to internal IP how can I remove this redirection. thanks


Osama Usmani

Issue communicating with internal ip

$
0
0
I have an application that needs to receive requests on port 14496 internally.  For whatever reason this communication is failing.  Since this is internal I don't think Windows Firewall would be causing the issue.  Any suggestions on where to look?  

Azure Firewall Support for TLS

$
0
0

Hello. My team would like to deploy Azure Firewall to protect virtual machine resources (deployed in within typical, N-tier application configurations).

We're wondering however, if Azure Firewall supports bi-directional TLS communication.  This is important to us because some of the key, external services we plan to use - such as Apigee Edge - require traffic be TLS encrypted.  Our plan is to use Azure Firewall as the single entry point for all external endpoints so the ability to support TLS is a key consideration.

Thanks!

Allow Multiple RDP Logons to an Azure VM

$
0
0

Hi all,

We have stood up a test VM in Azure. Obviously the out of the box default allows for a maximum of two concurrent logons. However, we will most likely need to allow more than two simultaneous logons so can anyone tell me what the best way to do this is?

From having a google it seems that MS recommend we purchase RDS Subscriber Access Licenses (SALs) for each user. If this is indeed what we need to purchase, how would one go about assigning these licences to the server? Is a dependency on AD being installed (the reason i ask is that the VM is not part of a domain)?

Somwhat confusingly, I've also seen a number of blog posts and technet threads which seem to imply you can just install the RDSH and RDL roles on a workgroup azure VM and then install per-User/per-Device CALs to allow multiple concurrent connections so I'm a little unsure as to where the answer lies.

Thanks for any info/advice.



cannot connect to VM windows server via remote desktop

$
0
0

I used to be able to connect to my Azure windows classic VM. There is nothing changed regarding to my network or firewall. Now I don't seem to be able to connect to it anymore. Keep getting error about the connection. Restart VM doesn't seem to work. When I tried to reset remote desktop, it keeps running and the log show "Register with the Provider succeed" and stop there. Is there anything else I should do?

Thanks so much,

Dan

 

Can't deploy F2s_v2?

$
0
0

Each time I try to deploy a F2s_v2 (or any of the compute v2) it says not available on my subscription.  It will only let me deploy the older generation of compute optimized?

What is the proper region where these can be deployed?  I tried all the US ones?

I tried on our MPN subscription credits,  also tried on a Pay-As-You-Go subscription.   No matter what I try, they are grayed out.

thanks

unabe to update the scale set and apply the Custom Script Extension to the VM instances

$
0
0

i am using powershell to create and update vmss as mentioned doc at https://docs.microsoft.com/en-us/azure/virtual-machine-scale-sets/quick-create-powershell. i am copying pasting exact commands .however when trying to execute update vmss - script gets hung ,does nothing and i get error - long running script operations failed.

New-AzVmss `
-ResourceGroupName "myResourceGroup" `
-Location "EastUS" `
-VMScaleSetName "myScaleSet" `
-VirtualNetworkName "myVnet" `
-SubnetName "mySubnet" `
-PublicIpAddressName "myPublicIPAddress" `
-LoadBalancerName "myLoadBalancer" `
-UpgradePolicyMode "Automatic"

# Define the script for your Custom Script Extension to run
$publicSettings = @{
"fileUris" = (,"https://raw.githubusercontent.com/Azure-Samples/compute-automationconfigurations/
master/automate-iis.ps1");
"commandToExecute" = "powershell -ExecutionPolicy Unrestricted -File automate-iis.ps1"
}
# Get information about the scale set
$vmss = Get-AzVmss `
-ResourceGroupName "myResourceGroup" `
-VMScaleSetName "myScaleSet"
# Use Custom Script Extension to install IIS and configure basic website
Add-AzVmssExtension -VirtualMachineScaleSet $vmss `
-Name "customScript" `
-Publisher "Microsoft.Compute" `
-Type "CustomScriptExtension" `
-TypeHandlerVersion 1.8 `
-Setting $publicSettings
# Update the scale set and apply the Custom Script Extension to the VM instances
Update-AzVmss `
-ResourceGroupName "myResourceGroup" `
-Name "myScaleSet" `
-VirtualMachineScaleSet $vmss

Can't access other 50% of available RAM

$
0
0

I have the following VM on Azure.

Windows (Windows Server 2019 Datacenter)

Standard A2m v2 (2 vcpus, 16 GiB memory)

No matter how many tabs I open in Chrome browser, Task Manager always shows more than 50% or 8 GB memory available. I paid for 16 GB RAM usage. How do I access other 8 GB of RAM?

Thanks!

David

Prevent Shutdown with Nodejs?

$
0
0
Hello, I am using azure to host many different nodejs applications. I am using ssh to run them, but I noticed that when I close the ssh connection, all tasks stop running. How do I fix this?. Thanks in advance.

Virtual Machine Issue

$
0
0

I have a Virtual Machine with 2GB of Ram and 2CPU's we are running a monitoring system in that virtual machine which is spiking up its cpu and memory every 2nd day.

can i have a resolution for reducing the cpu and memory usage to normal in that azure virtual machine.

probably a vm resizing or disk expansion or a clustering service.

i probably more interested in clustering my vm if that is possible.

Issue with Deployment of Custom VM Image with SqlServer ,Reports Configured and Custom Software on it.

$
0
0

Hello ,

We are trying to make a base Product VM Image with Sqlserver installed and our Database added to it and reports(SSRS)  also configured , Product s/w also installed.

We deployed our Image on Azure  , but when we are making a new instance of VM from base image we found that Sql server is missing in new VM instance ,  kindly help us as  we need to get complete image including sqlserver and very thing configured as it in base VM Image.

Request all of you to support us , as we are trying to publish our product on Azure Market Place.


Unable to Communicate from one azure VM in same virtual net to the secondary NIC of another azure VM

$
0
0

I have an azure Linux VM say VM1 having only one network interface with private IP 10.3.0.5, I have another azure Linux VM say VM2 with two network interfaces, the private IP on primary network interface is 10.3.5.4, the private IP on the secondary network interface is 10.3.4.4. Now I am able to ping VM2 from VM1 on primary network interface of VM2 as ping 10.3.5.4 but I am not able to ping it in on secondary network interface as ping 10.3.4.4.

After reading azure docs - https://docs.microsoft.com/en-gb/azure/virtual-machines/linux/multiple-nics#configure-guest-os-for-multiple-nics, they say that you would have to manually add required routes to achieve this.

Similar problem in windows VM - https://support.microsoft.com/en-in/help/4048050/troubleshooter-for-azure-vm-connectivity-problems

here is the result of command route -n on VM2

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         10.3.5.1        0.0.0.0         UG    0      0        0 eth0
10.3.4.0        0.0.0.0         255.255.255.0   U     0      0        0 eth1
10.3.5.0        0.0.0.0         255.255.255.0   U     0      0        0 eth0
168.63.129.16   10.3.5.1        255.255.255.255 UGH   0      0        0 eth0
169.254.169.254 10.3.5.1        255.255.255.255 UGH   0      0        0 eth0
172.17.0.0      0.0.0.0         255.255.0.0     U     0      0        0 docker0
172.18.0.0      0.0.0.0         255.255.0.0     U     0      0        0 docker_gwbridge

Now as per the above azure docs, it is missing an entry something like this

0.0.0.0        10.3.4.1         0.0.0.0        UG     0      0        0  eth1

I tried adding this route to my VM2 but after running the following command, my vm just stopped responding route add -net 0.0.0.0 netmask 0.0.0.0 gw 10.3.4.1 dev eth1

How do I add the correct route for my problem ? Please help !

Unable to complete Azure Migrate Hands on Lab

$
0
0

I have been trying to do this lab Assessing on-premises VMware environments with Azure Migrate for the past two days now. A few minutes into the lab, I get kicked out of the virtual machine. It keeps trying to reconnect and failing. When I close the lab windows and go back to the launch page, I am unable to relaunch the lab getting this error "One or more errors were encountered: Sorry, please wait 24 hours before launching this lab again"

I am using Google Chrome browser on Windows 10. Also tried using Edge. I have also cleared the cache and retried. No luck so far. This is very frustrating.

Not Able to connect to our mail server from Azure VM

$
0
0

Hi 

I am not able to connect to our external mail server  from from azure VM on port 25 and 587.

Please help me in fixing it.


Application URL working inside VM but not outside the VM/Vnet

$
0
0

Hi All,

I have installed an application(QLik Nprinting) in a new Azure virtual machine. The application has a web portal that can be launched using URL http://servername:4994/. I can access this web portal inside the VM and in other VM which is in same VNet. But I cannot access the URL outside the VM i.e.in my client machine(intranet) which is not in Azure cloud.

I have opened the port 4994 (for inbound as well as for outbound) in both network interface and subnet in the Azure portal for the VM. I have turned off the windows firewall inside the VM machine. When tried to telnet inside VM using "Telnet appVMservername 4994" - it is responding but when tried to perform outside the VM i.e. in my client machine I got the error - "could not open connection to the host, on port 4994: connect failed"

The error I get when I access the URL outside the VM/Vnet: The web page can't be displayed. I expect the URL should launch my app web portal outside the VM too without any issues.

Please suggest how to solve this issue.


shravani

Azure Government and Vmware-As-A-Service Using CloudSimple

$
0
0
Currently CloudSimple is available in the Azure Commercial sector for East and West US regions. Will it be available in the Azure Government sector, and if so, when?
Viewing all 12545 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>