Home > Storage > PowerStore > Databases and Data Analytics > Dell PowerStore: Oracle Best Practices > PowerStore file system and Oracle ASM disks
When using NFS storage, Oracle recommends using Oracle Direct NFS (dNFS) rather than native kNFS.
Note: According to Oracle, caution should be exercised when considering using NFS storage in an Oracle database that uses ASM. In general, such configurations should be avoided or at least carefully considered. The issue is that to prevent data corruption, NFS file systems must be hard-mounted. Hard mounting means that the database or an ASM instance must wait indefinitely when an NFS server, or the communications link it operates over, becomes unavailable. NFS on ASM might be reasonable in some situations. See Oracle MOS note doc ID 1620238.1, “Creating File Devices On NAS/NFS FileSystems for ASM Diskgroups.”
To create ASM disks from PowerStore file systems, follow these steps:
mkdir /ora-asm-db2
chown grid:oinstall /ora-asm-db2
chmod 770 /ora-asm-db2
mount -t nfs -o rw,bg,hard,nointr,tcp,vers=3,\
timeo=600,rsize=32768,wsize=32768,\
actimeo=0 mmm.mmm.mmm.mmm:/ora-asm-db2 /ora-asm-db2
Note: For rsize and wsize values, see the sections Mount options for an NFS share and Display PowerStore’s current nfs v3 buffer sizes.
chown grid:oinstall /ora-asm-db2
chmod 770 /ora-asm-db2