In many cases we would like to get the active configurations from a Ceph node, either a monitor or an OSD node. A neat feature, I must say, is to probe the administrative socket file to get a listing of all the active configurations, be it on the OSD node or the monitor node.
This comes handy when we have changed a setting and wants to confirm if it had indeed changed or not.
The admin socket file exists for both the monitors and the OSD nodes. The monitor node will have a single admin socket file, while the OSD nodes will have an admin socket for each of the OSDs present on the node.
- Listing of the admin socket on a monitor node
1# ls /var/run/ceph/ -l total 4 srwxr-xr-x. 1 root root 0 May 13 05:13 ceph-mon.hp-m300-2.asok -rw-r--r--. 1 root root 7 May 13 05:13 mon.hp-m300-2.pid- Listing of the admin sockets on an OSD node
1# ls -l /var/run/ceph/ total 20 srwxr-xr-x. 1 root root 0 May 8 02:42 ceph-osd.0.asok srwxr-xr-x. 1 root root 0 May 26 11:18 ceph-osd.2.asok srwxr-xr-x. 1 root root 0 May 26 11:18 ceph-osd.3.asok srwxr-xr-x. 1 root root 0 May 8 02:42 ceph-osd.4.asok srwxr-xr-x. 1 root root 0 May 26 11:18 ceph-osd.5.asok -rw-r--r--. 1 root root 8 May 8 02:42 osd.0.pid -rw-r--r--. 1 root root 8 May 26 11:18 osd.2.pid -rw-r--r--. 1 root root 8 May 26 11:18 osd.3.pid -rw-r--r--. 1 root root 8 May 8 02:42 osd.4.pid -rw-r--r--. 1 root root 8 May 26 11:18 osd.5.pidFor example, consider that we have changed the 'mon_osd_full_ratio' value, and need to confirm that the cluster has picked up the change.
We can get a listing of the active configured settings and grep out the setting we are interested in.
1
2# ceph daemon /var/run/ceph/ceph-mon.*.asok config showThe above command prints out a listing of all the active configurations and their current values. We can easily grep out 'mon_osd_full_ratio' from this list.
1
2# ceph daemon /var/run/ceph/ceph-mon.*.asok config show | grep mon_osd_full_ratioOn my test cluster, this printed out '0.75' which is the default setting. The cluster should print out 'near full' warnings once any OSD has reached 75% of its size.
This can be checked by probing the OSD admin socket as well.
NOTE: In case you are probing a particular OSD, please make sure to use the OSD admin socket on the node in which the OSD is. In order to locate the OSD and the node it is on, use :
1
2# ceph osd treeExample: We try probing the OSD admin socket on its node, for 'mon_osd_full_ratio' as we did on the monitor. It should return the same value.
1
2# ceph daemon /var/run/ceph/ceph-osd.5.asok config show | grep mon_osd_full_ratioNOTE: Another command exists which should print the same configuration settings, but only for OSDs.
1
2# ceph daemon osd.5 config showA drawback worth mentioning, this should be executed on the node on which the OSD is present. To find that the OSD to node mapping, use 'ceph osd tree'.



