您好,登錄后才能下訂單哦!
aix文件系統怎么實現在線擴容,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
aix的文件系統擴容是非常靈活的,如果不涉及加硬盤的硬件操作,只要通過aix里面的命令或者smitty菜單就行了,當然做好數據備份在任何情況下都是必要的。
1、因為數據庫歸檔日志目錄空間較小,而日志增長又比較快,因歸檔日志滿很容易造成數據庫掛起,所以準備對文件系統進行擴容。
# df -g
Filesystem GB blocks Free %Used Iused %Iused Mounted on
/dev/hd4 5.00 4.90 3% 7024 1% /
/dev/hd2 20.00 14.77 27% 57946 2% /usr
/dev/hd9var 10.00 9.37 7% 7454 1% /var
/dev/hd3 15.00 14.41 4% 3290 1% /tmp
/dev/hd1 6.00 5.01 17% 1873 1% /home
/proc - - - - - /proc
/dev/hd10opt 15.00 14.62 3% 10242 1% /opt
/dev/lv00 0.25 0.24 4% 18 1% /var/adm/csd
/dev/fslv00 10.00 9.20 8% 2876 1% /sapmnt/BWP
/dev/lv_oracle 0.50 0.50 1% 47 1% /oracle
/dev/BWP 5.00 4.55 9% 12334 2% /oracle/BWP
/dev/BWP_102_64 9.00 4.84 47% 22062 2% /oracle/BWP/102_64
/dev/BWP_mirrlogA 0.50 0.40 20% 6 1% /oracle/BWP/mirrlogA
/dev/BWP_mirrlogB 0.50 0.40 20% 6 1% /oracle/BWP/mirrlogB
/dev/BWP_oraarch 50.00 38.82 93% 279 1% /oracle/BWP/oraarch
/dev/BWP_origlogA 0.50 0.36 29% 9 1% /oracle/BWP/origlogA
2、查看當前活動的卷,只有兩個,經與工程師確認數據庫歸檔日志目錄在ORAVG卷上。
# lsvg -o
oravg
rootvg
進一步詳細查看ORAVG卷的信息
# lsvg -l oravg
oravg:
LV NAME TYPE LPs PPs PVs LV STATE MOUNT POINT
lv_oracle jfs2 2 2 1 open/syncd /oracle
client jfs2 2 2 1 open/syncd /oracle/client
stage_102_64 jfs2 28 28 1 open/syncd /oracle/stage/102_64
BWP jfs2 20 20 1 open/syncd /oracle/BWP
BWP_102_64 jfs2 36 36 1 open/syncd /oracle/BWP/102_64
BWP_origlogA jfs2 2 2 1 open/syncd /oracle/BWP/origlogA
BWP_origlogB jfs2 2 2 1 open/syncd /oracle/BWP/origlogB
BWP_mirrlogA jfs2 2 2 1 open/syncd /oracle/BWP/mirrlogA
BWP_mirrlogB jfs2 2 2 1 open/syncd /oracle/BWP/mirrlogB
BWP_oraarch jfs2 200 200 1 open/syncd /oracle/BWP/oraarch
發現當前目錄的PPS大小為200
3、# lsvg oravg
VOLUME GROUP: oravg VG IDENTIFIER: 00c6abcf00004c000000012d038039cb
VG STATE: active PP SIZE: 256 megabyte(s)
VG PERMISSION: read/write TOTAL PPs: 7191 (1840896 megabytes)
MAX LVs: 512 FREE PPs: 2589 (582912 megabytes)
LVs: 18 USED PPs: 4602 (1257984 megabytes)
OPEN LVs: 18 QUORUM: 5 (Enabled)
TOTAL PVs: 9 VG DESCRIPTORS: 9
STALE PVs: 0 STALE PPs: 0
ACTIVE PVs: 9 AUTO ON: no
MAX PPs per VG: 130048
MAX PPs per PV: 1016 MAX PVs: 128
LTG size (Dynamic): 1024 kilobyte(s) AUTO SYNC: no
HOT SPARE: no BB POLICY: relocatable
查看oravg卷組信息可知每個PPS大小為256M,目前oravg還剩2589個PPS,共計662784M;
4、
擴展文件系統的空間
使用命令 # chfs -a size=+78G /oracle/BWP/oraarch #意思是給/oracle/BWP/oraarch增加78G的空間(注意G是大寫)
執行完再lsvg 發現free pp size 沒有增加,但是用smitty chfs 來做的時候
發現,增加的 size 在/oracle/BWP/oraarch上已經體現了。
使用smitty chfs來擴容的過程:
#smitty chfs回車后選擇這一項Change/Show Characteristics of an Enhanced Journaled File System,然后在目錄列表里找到需要擴容的目錄按回車。
Type or select values in entry fields.
Press Enter AFTER making all desired changes.
[Entry Fields]
File system name /oracle/BWP/oraarch
NEW mount point [/oracle/BWP/oraarch]
SIZE of file system
Unit Size Megabytes +
Number of units [79872] #
Mount GROUP []
Mount AUTOMATICALLY at system restart? no +
PERMISSIONS read/write +
Mount OPTIONS [] +
Start Disk Accounting? no +
Block Size (bytes) 4096
Inline Log? no
Inline Log size (MBytes) [0] #
Extended Attribute Format [v1]
Enable Quota Management? no +
Allow Small Inode Extents? no +
we will see result:
COMMAND STATUS
Command: OK stdout: yes stderr: no
Before command completion, additional instructions may appear below.
Filesystem size changed to 131072 #擴容后包含已有空間的容量
5、再檢查一下看新增上沒有
# df -g
Filesystem GB blocks Free %Used Iused %Iused Mounted on
/dev/hd4 5.00 4.90 3% 7024 1% /
/dev/hd2 20.00 14.77 27% 57935 2% /usr
/dev/hd9var 10.00 9.37 7% 7454 1% /var
/dev/hd3 15.00 14.41 4% 3381 1% /tmp
/dev/hd1 6.00 5.01 17% 1873 1% /home
/proc - - - - - /proc
/dev/hd10opt 15.00 14.62 3% 10242 1% /opt
/dev/lv00 0.25 0.24 4% 18 1% /var/adm/csd
/dev/fslv00 10.00 9.20 8% 2876 1% /sapmnt/BWP
/dev/lv_oracle 0.50 0.50 1% 47 1% /oracle
/dev/BWP 5.00 4.55 10% 12348 2% /oracle/BWP
/dev/BWP_102_64 9.00 4.84 47% 22069 2% /oracle/BWP/102_64
/dev/BWP_mirrlogA 0.50 0.40 20% 6 1% /oracle/BWP/mirrlogA
/dev/BWP_mirrlogB 0.50 0.40 20% 6 1% /oracle/BWP/mirrlogB
/dev/BWP_oraarch 128.00 99.82 23% 663 1% /oracle/BWP/oraarch
好了,一切正常,擴容成功。
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。