vxedquota -u testuser
UX:vxfs vxedquota: ERROR: V-3-22128: no such user testuser
This is a product limitation. The getuid function returns the UID/GUID as an integer. Any value greater than 2147483647 will fail.
usermod -u 2147483647 testuser
vxedquota -u testuser
usermod -u 2147483648 testuser
vxedquota -u testuser
UX:vxfs vxedquota: ERROR: V-3-22128: no such user testuser
Use a UID/GUID less than 2147483648. This still permits in excess of 2 billion users and user groups.
UX:vxedquota fails with a very large UID/GUID