할당량 구성을 수정하면 xfs fllesystem을 다시 마운트할 수 없습니다.

할당량 구성을 수정하면 xfs fllesystem을 다시 마운트할 수 없습니다.

1. 처음에는

mount | grep home 
/dev/sdb1 on /home type xfs (rw,relatime,attr2,inode64,noquota)

2. 수정해 보세요

mount -o remount,rw,relatime,attr2,inode64,prjquota  /dev/sbd1 /home

3. 다시 확인해보세요

mount | grep home 
/dev/sdb1 on /home type xfs (rw,relatime,attr2,inode64,noquota)

이것은 작동하지 않습니다.

cat /etc/fstab

#
# /etc/fstab
# Created by anaconda on Tue Aug  9 15:24:43 2016
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
UUID=8f1038a3-6c31-4ce1-a9ef-3d7325e10bef /                       ext4    defaults        1 1
UUID=c687eab8-3ddd-4756-b91e-ad562b522f7c /boot                   ext4    defaults        1 2
UUID=7ae72a46-1407-49e6-8669-95bb9e592794 /home                   xfs     rw,relatime,attr2,inode64,prjquota        0 0
UUID=3ccea12f-25d0-437b-9c4b-6ad6a9bd724c /tmp                    xfs     defaults        0 0
UUID=b8ab4016-49bd-4f48-9620-5bda76f4d8b1 /var/log                xfs     defaults        0 0
UUID=8b9a7ada-3f02-4ee5-8010-ad32a5d7461e swap                    swap    defaults        0 0

컴퓨터를 수정 /etc/fstab한 다음 다시 시작하여 작동하게 할 수 있습니다. 그런데 재부팅하지 않고 할당량 구성을 변경할 수 있는 방법이 있나요?

답변1

RHEL 문서에 따르면 다음을 수행할 수 없습니다.

XFS 할당량은 다시 마운트할 수 있는 옵션이 아닙니다. 할당량을 적용하려면 초기 설치 중에 -o quota 옵션을 지정해야 합니다.

https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/Storage_Administration_Guide/ch03s09.html#idp21353040

또한 다음을 사용하여 사용자(테스트) 할당량을 변경해 보았습니다.

xfs_quota -x /home
xfs_quota> report -hu
User quota on /home (/dev/mapper/cl_backup--server-home)
                        Blocks              
User ID      Used   Soft   Hard Warn/Grace   
---------- --------------------------------- 
root            0      0      0  00 [------]
test        11,4G     9G    10G  00 [-none-]

xfs_quota> limit bsoft=30g bhard=32g test
xfs_quota> report -hu
User quota on /home (/dev/mapper/cl_backup--server-home)
                        Blocks              
User ID      Used   Soft   Hard Warn/Grace   
---------- --------------------------------- 
root            0      0      0  00 [------]
test        11,4G    30G    32G  00 [------]

xfs_quota> q

관련 정보