Before we shut down ASM instance it is important to dismount acfs file system , Once it is dismounted all open references to Oracle ASM files are removed .

If ACFS file system is active and ASM instance is forcibly shut down , acfs file system will be placed in offline error state.If any file systems are currently mounted on Oracle ADVM volume files, the SHUTDOWN ABORT command should not be used to terminate the Oracle ASM instance without first dismounting those file systems.

Steps to mount acfs file system :

Step 1 : Enable volume from asmcmd :

ASMCMD> volinfo -G data -a
Diskgroup Name: DATA

	 Volume Name: VOLUME1
	 Volume Device: /dev/asm/volume1-167
	 State: DISABLED
	 Size (MB): 3072
	 Resize Unit (MB): 32
	 Redundancy: UNPROT
	 Stripe Columns: 4
	 Stripe Width (K): 128
	 Usage: ACFS
	 Mountpath: /u01/app/acfsmounts/myacfs

We can see here it is in disabled state

ASMCMD> volenable -G data -a 
ASMCMD> volinfo -G data -a
Diskgroup Name: DATA

	 Volume Name: VOLUME1
	 Volume Device: /dev/asm/volume1-167
	 State: ENABLED
	 Size (MB): 3072
	 Resize Unit (MB): 32
	 Redundancy: UNPROT
	 Stripe Columns: 4
	 Stripe Width (K): 128
	 Usage: ACFS
	 Mountpath: /u01/app/acfsmounts/myacfs 

ASMCMD>

Step 2 : Mount it using /bin/mount :

[root@rac1 ~]# /bin/mount -t acfs /dev/asm/volume1-167 /u01/app/acfsmounts/myacfs

To unmount acfs file system :

[root@rac1 ~]# /bin/umount -t acfs /dev/asm/volume1-167 /u01/app/acfsmounts/myacfs

Stay tuned for More articles on Oracle RAC

Thank you for giving your valuable time to read the above information.

If you want to be updated with all our articles send us the Invitation or Follow us:

Telegram Channel : https://t.me/helporacle

Skant Gupta’s LinkedIn: www.linkedin.com/in/skantali/

Joel Perez’s LinkedIn: Joel Perez’s Profile

LinkedIn Group: Oracle Cloud DBAAS

Facebook Page: OracleHelp

About The Author

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.