I have oracle linux 6.7 and i want to create a share folder with NFS.I want to Backup database to this folder.
I have NFS server and it has a share folder :
192.168.1.10:/OracleBK
In my oracle linux , i have create a folder , /orabackup and the oracle user from oinstall group is owner of this folder :
mkdir /orabackup
chown -R oracle:oinstall /orabackup
chmod -R 777 /orabackup
mount -t nfs -o rw 192.168.1.10:/OracleBK /orabackup
and i config /etc/fstab :
192.168.1.10:/OracleBK /orabackup nfs defaults 0 0
and i execute this script for mounting folder :
mount /orabackup
Now , "orabackup" folder is mounted .
But i want to read and write to this directory with oracle user .
The oracle user can not read or write , because it has not permission .
But root user can read and write on this directory .
Can any one help me , what should i do for reading or writing on this directory with oracle user ?