Search results

  1. M

    Mount CephFS Fuse at Boot (Persistent)

    I got some help on the ceph subreddit. Adding x-systemd.automount,x-systemd.idle-timeout=1min to the fstab command seems to have done the trick.
  2. M

    Mount CephFS Fuse at Boot (Persistent)

    I am unable to get persistent cephfs mount working as per these official instructions. Using Ubuntu 24.04. This will not mount at boot: #Mount ceph filesystem for video recordings #DEVICE PATH TYPE OPTIONS none /mnt/videorecordings fuse.ceph ceph.id=nvr02,_netdev,defaults 0 0...
  3. M

    CephFS "Block Size"?

    I see, thank you.
  4. M

    CephFS "Block Size"?

    Okay that make sense thank you. Now I know what to look into further.
  5. M

    CephFS "Block Size"?

    I am interested in creating a CephFS store for storing security camera footage; Essentially storing very large video files. I don't know what CEPH calls what I know traditionally as block size, but is there a way to adjust that setting? Are there any optimizations that I should consider for...
  6. M

    [SOLVED] Proxmox VMs Stuck in Migration Loop after Upgrade - Host Cannot Reboot

    I solved my issue my going into each VM on that host and shutting them down manually.
  7. M

    [SOLVED] Proxmox VMs Stuck in Migration Loop after Upgrade - Host Cannot Reboot

    I am upgrading from 9.0 to 9.1 and I completed upgrading the first host out of my 3-node cluster. When I gave the host a reboot command, it started attempting to migrate the VMs, but it ran into this issue with every VM on that host: task started by HA resource agent 2025-12-10 15:38:33...
  8. M

    Proxmox 7.3.3 / Ceph 17.2.5 - OSDs crashing while rebooting

    This happens very regularly for me. I have cephx disabled. { "assert_condition": "end_time - start_time_func < cct->_conf->osd_fast_shutdown_timeout", "assert_file": "./src/osd/OSD.cc", "assert_func": "int OSD::shutdown()", "assert_line": 4495, "assert_msg"...
  9. M

    Relay Hosts with Postfix

    So to make it more clear, all emails go through Proxmox Mail Gateway. You want to route emails depending on their source, a specific domain, and route them to a specific server? If so, I found this thread with what I believe is an answer to your question: Sender based routing
  10. M

    Relay Hosts with Postfix

    edit: I think I am confused as to what you are trying to do, so you can ignore this reply. Here are my notes: postfix relay settings at /etc/postfix/main.cf relayhost =pmg.domain.com:26 myhostname = hostname mydomain = domain.com myorigin = mailsender.domain.com To test send from command...
  11. M

    Transfer to new larger disk

    I would just clone the disk to the bigger one, resize it using a live cd (Gparted), then replace it as the boot disk. I wouldn't even bother reinstalling Proxmox.
  12. M

    High latency in VMs, No latency on backend?

    3-Node Cluster with CEPH RDP backend. Note, this should not be due to Proxmox or CEPH updates, since it never changed while this issue started to occur. Header Proxmox Virtual Environment 8.0.3 Search Node 'VMHost2' Day (maximum) CPU usage 2.20% of 24 CPU(s) IO delay 0.13% Load average...
  13. M

    Dell R520 Recurring Problem CPU locking

    Thanks for the tip but unfortunately, it did not solve the issue, and it also made the server fans run at 100% so I reverted.
  14. M

    Dell R520 Recurring Problem CPU locking

    I installed the intel-microcode package and restarted then I used all of the following commands to check for a microcode update and there were none. dmesg | grep "microcode updated early to" journalctl -b -k | grep "microcode updated early to" zgrep "microcode updated early to"...
  15. M

    Dell R520 Recurring Problem CPU locking

    I've got BIOS Version 2.9.0. The only critical Licecycle Errors in the past 2 years are chassis opened, drives removed and power supply redundancy lost (regular stuff). Warnings have to do with NIC ports going up and down. I've never installed any intel-microcode package for a CPU update. I'm...
  16. M

    Dell R520 Recurring Problem CPU locking

    I've been working with a Dell R520 with dual Xeon(R) CPU E5-2430 v2 @ 2.50GHz and I've had this recurring issue (for multiple years) after various kernel updates where the virtual machines (both windows and linux) lock up. Previously, I was somehow able to rectify this issue by disabling as...
  17. M

    [SOLVED] Corosync redundancy - corosync.conf

    Fabian, Thank you so much for your help, I was able to successfully re-add the correct corosync addresses and clean up the config file. You were right, steps 6-8 were not necessary. To summarize for anyone else needing help: Step 1. Disarm HA systemctl stop pve-ha-crm systemctl stop...
  18. M

    [SOLVED] Corosync redundancy - corosync.conf

    Here I meant that this wording does not exist in the newest wiki: bindnetaddr: 10.10.2.0 ringnumber: 0 But you did answer this question and you said it was not necessary, so I will remove this from the conf file. Running corosync-cfgtool -s at this moment, here is the result: Local node ID...
  19. M

    [SOLVED] Corosync redundancy - corosync.conf

    Actually now that you ask, I did not provide the complete story properly. Let me start again. This was the original corosync.conf: nodelist { node { name: VMHost2 nodeid: 3 quorum_votes: 1 ring0_addr: 10.10.2.16 } node { name: VMHost4 nodeid: 1 quorum_votes: 1...
  20. M

    [SOLVED] Corosync redundancy - corosync.conf

    Hi Fabian, thank you for the information. but I don't fully understand the procedure: Which link(s) do I need to remove? Do I need to remove the same link on each node? I thought link 0 was the same address on both configurations: 10.10.2.16, so I am confused. How do I remove the link? I guess...