Use this tag if a question is about VM
Questions tagged [vm]
14 questions
4
votes
1 answer
How to download a VM image from GCP?
I do not see a download button. I would like to download a VM image that was created on GCP using Packer and I would like to run it locally in Virtualbox.
030
- 13,383
- 17
- 76
- 178
1
vote
1 answer
How to make sure the specified Azure vm size available?
I am trying to create a VM with a playbook like this:
tasks:
...
- name: Create VM
azure_rm_virtualmachine:
resource_group: AnsibleResourcEGroup
name: AnsibleVM
vm_size: Standard_D4s_v3
...
When I run the…
Koala Yeung
- 113
- 5
1
vote
1 answer
Guarantee latest version of Chrome on Azure VM
We have automated tests run by an Azure pipeline on an Azure VM and would like to guarantee that the latest version of Chrome is installed before running the tests. Is there any way to do this?
We use WebDriverManager.Net to automate the Selenium…
Farinha
- 111
- 2
1
vote
1 answer
Trying to understand sample windows 10 packer template at https://github.com/StefanScherer/packer-windows
I am a beginner to Packer. I am using a template found at https://github.com/StefanScherer/packer-windows for Windows 10, and have been able to create a virtual machine in Hyper-V using the template and my own .ISO.
Now I want to take the next step…
JamesMatson
- 138
- 3
1
vote
1 answer
How do I package a jar and a Linux VM to run in Windows?
I'm new to DevOps so please forgive my ignorance. I have inherited a Win10 Java app that is currently run by pressing play in NetBeans. It makes API calls to a server running in a Linux VM.
What I'd like to know is how can I bundle this together and…
schoon
- 113
- 3
1
vote
2 answers
Accessing k8s outside of VM
I am running k8s cluster for evaluation purposes inside some vagrant box. I have external kubectl access. I was able to get PostgreSQL helm template running on the cluster. But now let say I want to access it outside of the k8s(or VM…
Zveratko
- 111
- 4
0
votes
1 answer
How to confirm whether a server is configured as a Remote Desktop Services session host?
My team is using an Azure Virtual Machine.
We are limited to two concurrent connections as described here:
A maximum of two concurrent connections are supported, unless the
server is configured as a Remote Desktop Services session host.*
I would…
Sheldon
- 97
- 1
- 1
- 8
0
votes
0 answers
How would I use a VM to allow automation with pyautogui
I have a problem with my current program I use MAMP for local host storage with SQL and I use pyautogui with pygetwindow to press and click buttons, fill in forms, and such. However, I want to be able to use my current computer without it getting in…
0
votes
1 answer
Performance of newly created Azure VM
Our team copied a VM from one Azure subscription onto a new Azure subscription.
This VM acts as a Clickhouse client. Both the original and the copied VMs share the same characteristics: Standard B4ms (4 vcpus, 16 GiB memory).
The newly created VM…
Sheldon
- 97
- 1
- 1
- 8
0
votes
1 answer
Azure KQL query to display list of VMs which were not patch for since 1 months
Is there a KQL query to get a list of VMs which are not patched since last month. Below is the sample I have
Update
| where Classification in ("Security Updates", "Critical Updates")
| where UpdateState == 'Needed' and Optional == false and Approved…
SandeshR
- 146
- 6
0
votes
1 answer
How to set the Virtual Machine name using Azure Image Builder?
According to this manual one can build an image on Azure using Azure Image Builder. When running the first example, the following error is shown in the customization log:
PACKER ERR ==> azure-arm: ERROR: -> RequestDisallowedByPolicy :
Resource…
030
- 13,383
- 17
- 76
- 178
0
votes
1 answer
Terraform wanting to redeploy azure vms for 'no' reason
I got a VM defined in terraform like this:
resource "azurerm_linux_virtual_machine" "vm" {
name = var.vm-name
resource_group_name = var.RG
location = var.location
size …
dahol
- 111
- 1
0
votes
2 answers
What would be a better option, to migrate our server to an Azure VM or to migrate our database to an Azure SQL instance?
My current company is looking to benefit from the cloud by hosting our different web apps and sql servers on Azure. We're not a tech company and I'm the sole developer here and I need some guidance on the topic.
We've got a Windows Server 2019…
Alex Chadwick
- 3
- 2
-1
votes
1 answer
vagrant up command fails to find any box
The issue:
For any vagrant box, whenever I run the vagrant up command, I get the following error:
This even happened when I tried the centos/7 box instead.
What I have tried:
Tried having VirtualBox window open while running vagrant up…
aquaticos
- 1
- 2