solaris11調整檔案系統配額

datapeng發表於2014-12-30

調整作業系統檔案系統配額
:~# df -h
Filesystem             Size   Used  Available Capacity  Mounted on
.............................此處省略很多行
testpool               1.9T    50G       1.4T     4%    /testpool
testpool/mytest        1.9T   1.6G       1.4T     1%    /export/nfs/mytest
testpool/saptest       1.9T    36G       1.4T     3%    /export/nfs/saptest
testpool/oracle        500G   6.1G         7G    11%    /oracle
testpool/oracle/orabip
                       500G   483G         7G    90%    /oracle/BIP

首先檢視這個pool池總的大小為:testpool:1.9T
當前已經使用的總的大小為:50g+1.6g+36g+6.1g+483g=580g

當前可以對testpool/oracle可以擴充套件的空間為:1900-600=1200g,也就是說大約可以把testpool/oracle的配額修改到1200g
:~# zfs get quota testpool/oracle/orabip
NAME                    PROPERTY  VALUE  SOURCE
testpool/oracle/orabip  quota     none   default
說明,這個層級是沒有配額限制的,他的大小來源於上一層,也就是testpool/oracle
:~# zfs get quota testpool/oracle
NAME             PROPERTY  VALUE  SOURCE
testpool/oracle  quota     500G   local
根掛載點的配額為500g

由於這個表空間承載了資料庫的檔案系統,已經不夠了,需要調整,而testpool池是足夠的,所以直接調整testpool的配額!
將其調整到1個t,比原來增加500g,進行如下操作
:~# zfs set quota=1024g testpool/oracle
:~# df -h
testpool               1.9T    50G       1.4T     4%    /testpool
testpool/mytest        1.9T   1.6G       1.4T     1%    /export/nfs/mytest
testpool/saptest       1.9T    36G       1.4T     3%    /export/nfs/saptest
testpool/oracle        1.0T   6.1G       578G     2%    /oracle
testpool/oracle/orabip
                       1.0T   443G       578G    44%    /oracle/BIP
擴充套件完成後,再次調整資料庫表空間就可以了!

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29371470/viewspace-1384827/,如需轉載,請註明出處,否則將追究法律責任。

相關文章