There will be few workloads that will be able to stress out your NVMe lanes. Unless you have that kind of workload, I would suggest 2x6 RAIDZ2 if you only have 1 server - it is safer to have less disks in a VDEV, it is still plenty fast. Don’t...
Hi, yes thats a typo; meant the raidz1 - I thought, it might be worth a shot to go with 3 vdevs - 4 drives each in raidz1 - and those 3 vdevs striped. If needing to reconfigure, we will have a backupserver so the pool could be re-created and then...
We bought a new server from HPE (Gen11) which is equiped with 12 nvme 1.92 TB Disks. Now I am asking myself wether to configure it for maximum diskspace - like 11x in a raidz5 plus 1 hostspare vs. IO-performance - something like 5striped vdevs à...
Port of nic vmbr0 and vmbr0.48 were all up, nothing seen in the logs - I was already ready to use an older iso for setup but I just wanted to show the problem to one of my colleagues - and all of a sudden connectivity was restored - no fuckin...
Hi @Elleni,
The first step is to go through standard Linux network troubleshooting. Capture the network state when everything is functioning correctly, then capture it again when the network is "broken". Compare the two states.
Access the...
Hello community,
we have setup a dozen of pve so I got quite some experience. But on the last one I got puzzled as I setup from iso, do configure /etc/networking/intrfaces to our needs and everything works fine, so I configured the apt sources...
Hi,
Proxmox VE does not support 32-bit virtual ARM machines. You could try and specify a 32-bit compatible machine via the custom args instead of -machine virt. See qemu-system-arm -machine help for a list of available machines. You might also...
Another question on ARM. I was asked by one of our devs if it would be possible to have a cortex-m33 guest. From looking at
qemu-system-arm -cpu help
...
cortex-m33
...
What would I need to change in vm-id.conf in order for it to boot...
FWIW towards the bottom of https://forum.proxmox.com/threads/clean-shutdown-of-whole-cluster.121116/post-526462 I found the HA services wouldn't properly stop on some nodes, but I was able to shut down the VMs (with the HA services running...
Edit to add the final version of the script - created by AI:
#!/bin/bash
LOGDIR="/var/log/rccmd"
LOGFILE="${LOGDIR}/shutdown_rccmd.log"
NODES=(1.2.3.4 1.2.3.5)
HA_TIMEOUT=60
GRACE_SLEEP=5
# ensure log directory and file exist locally
mkdir -p...
Yes, that is the way to go.
In your example the ssh commands run one after another. Better to parallelize it. The & lets the subshell of commands run in background, so both servers receive the commands at neary same time.
for i in 4 5; do
(...
Because of ha settings, I would like to ask what services would ideally be stopped, in order to issue a shutdown by an usv-triggered event. Could the bash skript look something like this?
ssh root@1.2.3.4 "<systemctl stop pve-ha-lrm> &&...
Even now you should be able to use this package if you add the non-sub repository since Aaron mentioned that it should be available in all repos. So until you got your subscription I would try the no-sub repo to install the package.
Thanks guys for clarification. After having activating subscription and modifying the repo settings, I was able to install said package and thus run an arm64 guest. Thanks for your valuable support.
Thanks - now that you mentioned it - as this server is foreseen for a subscription I did not add the no-subscription repo, and as the subscription is not yet activated - I am not in a actual state. Will try and test again as soon as the...
Are you sure?
apt install pve-edk2-firmware-aarch64
Package pve-edk2-firmware-aarch64 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
The error message indicates that for enabling spice options you need to be root.
Question: So it is not possible to assign the right to enable spice settings to an ldaps group to a role with certain priviledge?
Thanks for your quick reply. In the no-subscription the mentioned package doesnt exist for pve9, right? So how could/would I install it anyway to use it with pve9, while all the rest will be in subscribed enterprise repo? Is it possible to build...
With PVE 8 we were able to install the package: "pve-edk2-firmware-aarch64" and thus create and successfully boot an platform "-cpu cortex-a76" (aarch64 / arm64) guest.
On our new pve9 server which is foreseen for production use and will thus...