• How to resize an ACFS file system / ASM volume



    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: 

    SQL> ALTER DISKGROUP <DG_NAME> ADD VOLUME <VOL_NAME>1 SIZE 5G ;

    Diskgroup altered.




    3) Create the new ACFS filesystem on the /dev/asm/<VOL_NAME>1-292 volume:

    [root@dbaasm ~]# mkdir /oracle_backup --(as root user)

    [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

    [grid@dbaasm ~]$ /sbin/acfsutil registry -f -a /dev/asm/<VOL_NAME>1-292 /oracle_backup --(as grid user)





    5) Mount the /oracle_backup directory on the /dev/asm/<VOL_NAME>1-292 volume:

    [root@dbaasm ~]# /bin/mount -t acfs /dev/asm/<VOL_NAME>1-292 /oracle_backup --(as root user)




    6) The /oracle_backup ACFS filesystem was created with a size of 5GB:

    [grid@dbaasm ~]$ df -hBM /oracle_backup
    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:

    [grid@dbaasm ~]$ /sbin/acfsutil size 6G /oracle_backup
    acfsutil size: new file system size: 6442450944 (6144MB)




    8) Confirm that the ACFS filesystem was resized up to 6GB:

    [grid@dbaasm ~]$ df -hBM /oracle_backup
    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.

    SQL> select FS_NAME, VOL_DEVICE, TOTAL_MB , FREE_MB from V$ASM_ACFSVOLUMES;

    FS_NAME              VOL_DEVICE                     TOTAL_MB   FREE_MB
    -------------------- ------------------------------ ---------- ----------
    /oracle_backup       /dev/asm/<VOL_NAME>1-292       6144       6095.57031

    To BottomTo Bottom
  • 相关阅读:
    浏览器嗅探
    (转)javascript中为何在匿名function函数后面还外加一个括号
    js十进制转换二进制
    css_毛玻璃
    css桌布样式
    ocr api 识别表格 图片
    Linux查看日志常用命令
    linux find 命令查找文件和文件夹
    docker上安装airflow
    文件权限中 chmod、u+x、u、r、w、x分别代表什么
  • 原文地址:https://www.cnblogs.com/yaoyangding/p/13177587.html
Copyright © 2020-2023  润新知