Ceph Warning

subafr

New Member
Jan 28, 2020
24
1
3
44
Hello, I have installed a hyperconverged proxmox setup but i have a ceph warning i dont understand.
By the way i have installed a container and try the HA and it work, but i would like to understand why i have this warning.

Code:
1 pool(s) do not have an application enabled

application not enabled on pool 'pvepool1'
use 'ceph osd pool application enable <pool-name> <app-name>', where <app-name> is 'cephfs', 'rbd', 'rgw', or freeform for custom applications.

Whats this complaint ? Thanks for your help
 

Attachments

  • proxmox.png
    proxmox.png
    58.6 KB · Views: 10
What output do you get if you run the following command?
Code:
ceph osd pool application get <pool>

Should be something like
Code:
# ceph osd pool application get rbd
{
    "rbd": {}
}

If it is not, then you will need to run
Code:
# ceph osd pool application enable <pool> rbd
.

How did you create this pool if I may aks?
 
Hello !

root@ha01:~# ceph osd pool application get
{
"pvepool1": {
"rbd": {}
},
"device_health_metrics": {
"mgr_devicehealth": {}
}
}

I have create an rbd application on pvepool1 and it seems to work.

I have create the pool with "ceph osd pool creae pvepool1 128 128"

Thanks
 
Good to hear :)

I have create the pool with "ceph osd pool creae pvepool1 128 128"
Ah okay, well, Proxmox VE gives you the option to create pools via the GUI or with the `pveceph` CLI tool and will take care to set these things :)