I have managed to fix the quota in CentOS 7 +CWP - xfs formatted.
mount | grep ' / '
If the result is: /dev/vda1 on / type xfs (rw,relatime,attr2,inode64,noquota)
Then
nano /etc/default/grub
Add to the end of line of GRUB_CMDLINE_LINUX=
rootflags=uquota,gquota
Before
GRUB_CMDLINE_LINUX="console=tty0 crashkernel=auto console=ttyS0,115200"
After
GRUB_CMDLINE_LINUX="console=tty0 crashkernel=auto console=ttyS0,115200 rootflags=uquota,gquota"
Rebuild the grub config:
cp /boot/grub2/grub.cfg /boot/grub2/grub.cfg.orig
grub2-mkconfig -o /boot/grub2/grub.cfg
Then update the fstab
nano /etc/fstab
Change from
UUID=5f18...a0a / xfs defaults 0 0
To
UUID=5f18...a0a / xfs defaults,usrquota,grpquota 0 0
Reboot
Now login to the cwp and update each package and check while saving (Update quota for all users using this package, also disables inode limits !)