Recent content by 7thSon

  1. 7

    /etc/init.d/ceph warnings

    I ran into the same warning after upgrading from PVE 8 to PVE 9 with Ceph Squid. It looks like /etc/init.d/ceph is simply an obsolete conffile left behind by ceph-base: # dpkg -S /etc/init.d/ceph ceph-base: /etc/init.d/ceph # dpkg-query -W -f='${Conffiles}\n' ceph-base | grep init.d...
  2. 7

    [SOLVED]Ceph dashboard cause ceph manager fail to start

    I have only enabled ceph dashboard on our DEV cluster so far to play around with it a bit. Even though I already know the dashboard from plain ceph installations. But I see it very similar to you, I will probably not use ceph dashboard in our production environment together with proxmox.
  3. 7

    Ceph Dashboard not working after update to proxmox 7 (from 6.4)

    I just ran into the same prollem. After doing a systemctl reset-failed ceph-mgr@%YOUR-NODE-NAME-HERE%.service i was able to start the managers again I'm on Ceph pacific 16.2.9 & Proxmox 7.3-3
  4. 7

    [SOLVED]Ceph dashboard cause ceph manager fail to start

    I just ran into the same prollem. After doing a systemctl reset-failed ceph-mgr@%YOUR-NODE-NAME-HERE%.service i was able to start the managers again I'm on Ceph pacific 16.2.9 & Proxmox 7.3-3
  5. 7

    Ceph OSD disk replacement: Prevent multiple re-balancing of data

    The method worked exactly as described without any problems.
  6. 7

    Ceph OSD disk replacement: Prevent multiple re-balancing of data

    Great, thank you! And yes, its a 3X replication :-)
  7. 7

    Ceph OSD disk replacement: Prevent multiple re-balancing of data

    Hi We are running a Ceph cluster with 3 nodes and 2 OSDs per node on SSD drives. One of the nodes has recently been causing problems and both OSDs in this node sporadically report "log_latency_fn slow operation observed for _txc_committed_kv" in the log and the write performance is also poor in...
  8. 7

    Seperate corosync network: nodelist or quorum.expected_votes must be configured

    Sure: Node 1: root@proxmox-c1-n1:~# ip a 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128...
  9. 7

    Seperate corosync network: nodelist or quorum.expected_votes must be configured

    Local version of /etc/corosync/corosync.conf (on all 3 nodes) and /etc/pve/corosync.conf all look exactly the same while I never changed anything manually on the local config files in /etc/corosync/corosync.conf I just moved/copied the modified version of corosync.conf to /etc/pve/corosync.conf...
  10. 7

    Seperate corosync network: nodelist or quorum.expected_votes must be configured

    /etc/hosts on node1: 127.0.0.1 localhost.localdomain localhost 172.30.8.41 proxmox-c1-n1.proxmox.mydomain.com proxmox-c1-n1 pvelocalhost 172.30.8.42 proxmox-c1-n2.proxmox.mydomain.com proxmox-c1-n2 172.30.8.43 proxmox-c1-n3.proxmox.mydomain.com proxmox-c1-n3 10.55.1.1...
  11. 7

    Seperate corosync network: nodelist or quorum.expected_votes must be configured

    I'm trying to seperate the corosync network in our 3 node cluster (Proxmox 5.3-11) as described in https://pve.proxmox.com/wiki/Separate_Cluster_Network After copying the new corosync.conf to /etc/corosync/corosync.conf I'm getting the following error: Mar 19 10:22:57 proxmox-c1-n3...
  12. 7

    API: Cannot add IPSet

    Ah yeah, got it now. My set request would update an existing CIDR entry inside the the IPset instead of adding a new one.
  13. 7

    API: Cannot add IPSet

    That worked, thank you Dietmar! So is the documentation wrong or do I just not read it correctly?
  14. 7

    API: Cannot add IPSet

    I'm trying to add a subnet to an existing IPSet of an existing VM via the API. According to the docs (https://pve.proxmox.com/pve-docs/api-viewer/index.html) the correct command would be: pvesh set /nodes/{node}/qemu/{vmid}/firewall/ipset/{name}/{cidr} But this command doesn't work (node and...