I'm trying to use cephfs for isos. Prior to proxmox v6, we just created a mount point with /etc/fstab:
That worked (and still does).
Now I noticed PVE6 has a cephfs option, so in trying to do that, I receive a timeout when trying to add the storage pool for isos in the UI.
Looking at /var/log/messages I see:
(ignore the socket errors, I have a mon down right now, its unrelated)
I do have signatures and authentication disabled in my ceph.conf for performance reasons:
So I'm assuming it is due to my config disabling signatures ... however, how do I let proxmox know this with its use of libceph? The fuse mount via fstab seems happy.
Code:
none /mnt/isos fuse.ceph _netdev,defaults 0 0
Now I noticed PVE6 has a cephfs option, so in trying to do that, I receive a timeout when trying to add the storage pool for isos in the UI.
Looking at /var/log/messages I see:
Code:
Oct 24 09:44:51 proxmox1 kernel: [ 1646.633076] libceph: mon2 10.55.30.43:6789 socket error on read
Oct 24 09:44:53 proxmox1 kernel: [ 1649.417803] libceph: mon1 10.55.30.42:6789 bad crc/signature
Oct 24 09:45:00 proxmox1 kernel: [ 1655.561284] libceph: mon2 10.55.30.43:6789 socket error on write
Oct 24 09:45:00 proxmox1 kernel: [ 1655.561897] libceph: mon1 10.55.30.42:6789 bad crc/signature
Oct 24 09:45:05 proxmox1 kernel: [ 1661.449821] libceph: mon3 10.55.30.41:6789 bad crc/signature
Oct 24 09:45:09 proxmox1 kernel: [ 1664.522317] libceph: mon0 10.55.30.41:6789 bad crc/signature
Oct 24 09:45:14 proxmox1 kernel: [ 1669.769474] libceph: mon2 10.55.30.43:6789 socket error on read
Oct 24 09:45:14 proxmox1 kernel: [ 1670.409841] libceph: mon0 10.55.30.41:6789 bad crc/signature
Oct 24 09:45:18 proxmox1 kernel: [ 1673.482244] libceph: mon1 10.55.30.42:6789 bad crc/signature
Oct 24 09:45:21 proxmox1 kernel: [ 1676.554113] libceph: mon3 10.55.30.41:6789 bad crc/signature
Oct 24 09:45:24 proxmox1 kernel: [ 1679.626050] libceph: mon0 10.55.30.41:6789 bad crc/signature
Oct 24 09:45:27 proxmox1 kernel: [ 1683.466149] libceph: mon3 10.55.30.41:6789 bad crc/signature
Oct 24 09:45:31 proxmox1 kernel: [ 1686.539180] libceph: mon1 10.55.30.42:6789 bad crc/signature
Oct 24 09:45:36 proxmox1 kernel: [ 1692.426266] libceph: mon3 10.55.30.41:6789 bad crc/signature
Oct 24 09:45:43 proxmox1 kernel: [ 1698.570359] libceph: mon0 10.55.30.41:6789 bad crc/signature
Oct 24 09:45:45 proxmox1 kernel: [ 1701.386863] libceph: mon1 10.55.30.42:6789 bad crc/signature
I do have signatures and authentication disabled in my ceph.conf for performance reasons:
Code:
auth_client_required = none
auth_cluster_required = none
auth_service_required = none
cephx_sign_messages = false
cephx_require_signatures = false
So I'm assuming it is due to my config disabling signatures ... however, how do I let proxmox know this with its use of libceph? The fuse mount via fstab seems happy.