Oracle Database 19c – Direct NFS Client integrates the NFS client functionality directly in the Oracle software to optimize the I/O path between Oracle and the NFS server

root@nas:~# showmount –exports
Export list for nas:
/volume2/ora19nfs_data 192.168.2.1/24
cd $ORACLE_HOME/rdbms/lib
make -f ins_rdbms.mk dnfs_on
mkdir -p /db_data/ORA19NFS
chown -R oracle:dba /db_data
vi /etc/fstab
# Insert the following line there the paths are to be adapted according to the environment
nas:/volume2/ora19nfs_data /db_data/ORA19NFS nfs rw,bg,hard,nointr,tcp,vers=3,timeo=600,rsize=32768,wsize=32768,actimeo=0 0 0
mount -a
df -h
nas:/volume2/ora19nfs_data 2.7T 732G 2.0T 27% /db_data/ORA19NFS
vi $ORACLE_HOME/dbs/oranfstab
server: nas
local: 192.168.2.109
path: 192.168.2.210
export: /volume2/ora19nfs_data mount: /db_data/ORA19NFS

Leave a Reply

You must be logged in to post a comment.