Skip to Main Content

Infrastructure Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Create Network File System

saeed.sh110Jan 2 2016 — edited Jan 3 2016

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 ?

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 31 2016
Added on Jan 2 2016
10 comments
2,083 views