In this Document
Goal |
Solution |
Community Discussions |
References |
Applies to:
Oracle Database Cloud Service - Version N/A and later
Oracle Database - Enterprise Edition - Version 11.2.0.1.0 to 12.1.0.2 [Release 11.2 to 12.1]
Oracle Database Cloud Schema Service - Version N/A and later
Oracle Database Exadata Express Cloud Service - Version N/A and later
Oracle Database Exadata Cloud Machine - Version N/A and later
Information in this document applies to any platform.
***Checked for relevance on 08-Oct-2013***
Goal
The present document provides an example about how to resize an ACFS Filesystem/ASM Volume (ADVM) through command line.
Solution
1) Create the <DG_NAME> (8GB) diskgroup from ASM instance:
SQL> CREATE DISKGROUP <DG_NAME> EXTERNAL REDUNDANCY DISK 'ORCL:<DISK#>8' SIZE 4157 M DISK 'ORCL:<DISK#>9' SIZE 4157 M
ATTRIBUTE 'compatible.asm' = '11.2', 'compatible.advm' = '11.2';
Diskgroup created.
SQL> Select name, state, total_mb, free_mb from v$asm_diskgroup where name like '<DG_NAME>';
NAME STATE TOTAL_MB FREE_MB
------------------------------ ----------- ---------- ----------
<DG_NAME> MOUNTED 8314 8260
2) Create the next volume (5GB) in the <DG_NAME> diskgroup:
Diskgroup altered.
3) Create the new ACFS filesystem on the /dev/asm/<VOL_NAME>1-292 volume:
[grid@dbaasm ~]$ /sbin/mkfs -t acfs -b 4k /dev/asm/<VOL_NAME>1-292 -n "<VOL_NAME>1_LABEL" --(as grid user)
4) Register the /dev/asm/<VOL_NAME>1-292 volume on the /oracle_backup directory
5) Mount the /oracle_backup directory on the /dev/asm/<VOL_NAME>1-292 volume:
6) The /oracle_backup ACFS filesystem was created with a size of 5GB:
Filesystem 1M-blocks Used Available Use% Mounted on
/dev/asm/<VOL_NAME>1-292
5120M 47M 5074M 1% /oracle_backup
7) Then resize the ACFS filesystem to 6 GB:
acfsutil size: new file system size: 6442450944 (6144MB)
8) Confirm that the ACFS filesystem was resized up to 6GB:
Filesystem 1M-blocks Used Available Use% Mounted on
/dev/asm/<VOL_NAME>1-292
6144M 49M 6096M 1% /oracle_backup
9) The ASM volume (/dev/asm/<VOL_NAME>1-292) is
implicitly resized as well (to 6GB) as result of the ACFS filesystem
resize.
FS_NAME VOL_DEVICE TOTAL_MB FREE_MB
-------------------- ------------------------------ ---------- ----------
/oracle_backup /dev/asm/<VOL_NAME>1-292 6144 6095.57031
To Bottom |