Which four steps must be performed to achieve this?

You want to create an ACFS on an ADVM volume using a shell script and the appropriate command-line utilities. These are the requirements:

1. The dynamic volume file must use space in the VOLFILE disk group with a size of 500 M and be called prodvol.

2. The mount point called /acfs already exists.

Which four steps must be performed to achieve this?

You want to create an ACFS on an ADVM volume using a shell script and the appropriate command-line utilities. These are the requirements:

1. The dynamic volume file must use space in the VOLFILE disk group with a size of 500 M and be called prodvol.

2. The mount point called /acfs already exists.

Which four steps must be performed to achieve this?

A.
As the Grid Infrastructure owner, run mount �t acfs /dev/asm/prodvol-417 /acfs to mount the file system.

B.
As the Grid Infrastructure owner, run asmcmd volinfo �d VOLFILE prodvol to determine the volume information.

C.
As the Grid Infrastructure owner, run asmcmd volcreate �d VOLFILE �s 500M prodvol to create the volume file.

D.
As the Grid Infrastructure owner, run mkfs �t acfs /dev/asm/prodvol -417 to create the file system.

E.
As root, run mount �t acfs /dev/asm/prodvol -417 /acfs to mount the file system.

F.
As root, run mkfs �t acfs /dev/asm/prodvol -417 to create the file system.



Leave a Reply 1

Your email address will not be published. Required fields are marked *


rohit kumar

rohit kumar

B,C,D,E is the correct answer.

http://www.oracle.com/technetwork/products/cloud-storage/acfs-technical-overview-514457.pdf

Note, that root access is not required to create an ACFS filesystem, but mounting and creating the CRS resource will require root
access.

• Create the volume on each node:
[oracle@node1]$ asmcmd volcreate –G dataoh ohvol1 –s 6G
[oracle@node2]$ asmcmd volcreate –G dataoh ohvol2 –s 6G
• Once the ASM Dynamic volume are created and enabled5, the filesystem can be created over the
ADVM volume device. Create the filesystem:
[oracle@node1]$/sbin/mkfs.acfs /dev/asm/ohvol1-115
[oracle@node2]$/sbin/mkfs.acfs /dev/asm/ohvol2-115
• Mount the filesystem:
[root@node1]# mount /dev/asm/ohvol1-115 /u01/app/11.2.0/db
[root@node2]# mount /dev/asm/ohvol2-115 /u01/app/11.2.0/db