Ceph completely broken - Error got timeout (500)

I have the exact same problem, after CEPH finished installing got the error 500, any solution?
 
I encountered the same issue and managed to reinstall Ceph without facing the "Error: Got timeout (500)" problem after some trial and error.

To resolve this, you first need to completely remove Ceph from Proxmox. The following commands, which I found on this thread, worked for me:

Bash:
systemctl stop ceph-mon.target
systemctl stop ceph-mgr.target
systemctl stop ceph-mds.target
systemctl stop ceph-osd.target
rm -rf /etc/systemd/system/ceph*
killall -9 ceph-mon ceph-mgr ceph-mds
rm -rf /var/lib/ceph/mon/ /var/lib/ceph/mgr/ /var/lib/ceph/mds/
pveceph purge
apt-get purge ceph-mon ceph-osd ceph-mgr ceph-mds -y
apt-get purge ceph-base ceph-mgr-modules-core -y
rm -rf /etc/ceph/* /etc/pve/ceph.conf /etc/pve/priv/ceph.*
apt-get autoremove -y

Additionally, make sure to delete the /etc/pve/ceph folder with the following command:

Bash:
rm -vfr /etc/pve/ceph

Once all of this is done, I recommend performing a system reboot.

After completing these steps, you can try reinstalling Ceph through the Proxmox GUI. I found that version 17 worked for me, but version 18 still caused the "Error: Got timeout (500)" issue.

I hope this helps!
 
  • Like
Reactions: jebbam