Search results

  1. Hannes Laimer

    Some features Proxmonx

    Hey, a few of your questions have already be answered here in the forum, if I find the threads I'll link them . - for the # hosts in a cluster [1] - there is no limit for VMs, whatever your hardware can handle you can add - there is not really a limit, you should be able to assign as much as...
  2. Hannes Laimer

    Upgrade PVE 7 to 8 GUI services do not start automatically

    Hey, did any errors pop up during the upgrade? Could you try apt update apt dist-upgrade apt reinstall pve-manager Also check journalctl -b, it'll give you the logs since the last boot, look for any errors, especially for the services you mentioned. Do you have a cluster? If, do other nodes...
  3. Hannes Laimer

    Die Einrichtung von qdevice ist fehlgeschlagen

    Hey, hast du corosync-qnetd wie in [1] beschrieben installiert? [1] https://pve.proxmox.com/wiki/Cluster_Manager#_qdevice_net_setup
  4. Hannes Laimer

    Option to add folders to manage VMs

    Hey, [1] is the place for things like this. You can perform bulk actions based on tags, and tags are basically (more flexible) folders :) [1] https://bugzilla.proxmox.com/
  5. Hannes Laimer

    Proxmox without external network

    Hey, looks like the host (127.27.1.3) does not tag its traffic. You probably want to move the IP assignment from vmbr0 to vmbr0.1 auto vmbr0.1 iface vmbr0.1 inet static address 172.27.1.3/24 gateway 172.27.1.1 so the host traffic is tagged. Alternatively bridge-pvid 1 is also an...
  6. Hannes Laimer

    API: cluster name ermitteln

    Den cluster namen solltest du auch über /cluster/config/totem [1] bekommen. Sollte cluster_name sein, also data.cluster_name in deinem Beispiel dann. [1] https://pve.proxmox.com/pve-docs/api-viewer/index.html#/cluster/config/totem
  7. Hannes Laimer

    API: cluster name ermitteln

    Hey, inwieweit mühsam? Es wäre beide Male ein einziger Request.
  8. Hannes Laimer

    [SOLVED] Notification über gmail "connection refused". Testmail aber OK.

    Hey, hast du den "Notification Mode" auf "Notification System" gestellt?
  9. Hannes Laimer

    7.1-7 ISO

    Yes. You should try to keep nodes as close as possible version wise, but it is not a requirement to have them at the exact same versions. Live migrations also work, as long as: *major version, so PVE 7, PVE 8. Within the same major version it'll always be supported. Also for the upgrade please...
  10. Hannes Laimer

    7.1-7 ISO

    I see, 7.4 will work just as well for that. The cluster is usually also fine with not running the same version, since at least during the upgrade there will be nodes with different PVE versions in the same cluster. Just make sure your nodes run the same major ceph version. And before upgrading...
  11. Hannes Laimer

    Activation of network connection failed

    Hey, is this VM specific? Does internet work on the host itself and on other VMs?
  12. Hannes Laimer

    Recipient address rejected: Rejected by SPF

    Hey, the allowed IPs appear to be r-inkas.ru. 86400 IN TXT "v=spf1 mx ip4:185.86.134.11 ip4:194.84.103.61 ip4:194.84.103.188 ip4:81.9.114.34 ip4:81.9.122.86 ip4:81.9.122.87 ip4:81.9.122.88 ip4:185.86.134.242 -all" you'll have to update the SPF DNS record and either - add one to...
  13. Hannes Laimer

    [SOLVED] GUI Inaccessible through Crome (MBP M3 macOS Sequoia 15.0.1)

    Hey, does the browser console contain any errors? Just to be sure, the url looks like this https://<IP>:8006
  14. Hannes Laimer

    Couldn't boot other kernel

    Hey, what does proxmox-boot-tool kernel list say?
  15. Hannes Laimer

    PVE cluster communication failed when I changed PVE nodes IP address

    Hey, did you update[1] /etc/pve/corosync.conf? Also take a look at [2], that should walk you through how to update the corosync config properly, since it is a little involved. For future reference the easiest way would probably be to add a second link with the new IP, then deleting the old...
  16. Hannes Laimer

    7.1-7 ISO

    Hey, there is 7.4 on [1], what is the reason for this specific version? [1] https://www.proxmox.com/de/downloads/proxmox-virtual-environment/iso/
  17. Hannes Laimer

    UEFI or BIOS

    Hey, you can see the boot mode in the node summary. But generally VMs neither care, nor do they know how the host was booted, or basically anything else host specific.
  18. Hannes Laimer

    [SOLVED] Connect to web-interface with openvpn

    Based on the screenshots you posted it looks like 192.168.100.2 is running the openvpn, if that is not the case replace 192.168.100.2 with the IP of the openvpn server(the VM that can reach 192.168.101.0/24) in the following. In your ping example 192.168.100.5 can't answer the ping because it...
  19. Hannes Laimer

    [SOLVED] Connect to web-interface with openvpn

    The problem is that 192.168.100.5 does not know how to reach 192.168.101.0/24, so it receives the ping package, but can't answer. 1. You can either set a route to 192.168.101.0/24 through 192.168.100.2 on your default gateway 2. or, setup NAT on 192.168.100.2 1. is probably what you want though.