6.6. Checking Client Operating Versions
Different versions of Red Hat Gluster Storage support different features. Servers and clients identify the features that they are capable of supporting using an operating version number, or
op-version
. The cluster.op-version
parameter sets the required operating version for all volumes in a cluster on the server side. Each client supports a range of operating versions that are identified by a minimum (min-op-version
) and maximum (max-op-version
) supported operating version.
Check the operating versions of the clients connected to a given volume by running the following command:
- For Red Hat Gluster 3.2 and later
gluster volume status volname clients
# gluster volume status volname clients
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Useall
in place of the name of your volume if you want to see the operating versions of clients connected to all volumes in the cluster.
Before Red Hat Gluster Storage 3.2:
- Perform a state dump for the volume whose clients you want to check.
gluster volume statedump volname
# gluster volume statedump volname
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Locate the state dump directory
gluster --print-statedumpdir
# gluster --print-statedumpdir
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Locate the state dump file and grep for client information.
grep -A4 "identifier=client_ip" statedumpfile
# grep -A4 "identifier=client_ip" statedumpfile
Copy to Clipboard Copied! Toggle word wrap Toggle overflow