Problem with NFS


 
Thread Tools Search this Thread
Operating Systems Solaris Problem with NFS
# 1  
Old 03-26-2010
Problem with NFS

Hi All,

I have shared a directory from Linux machine which will be accessible from other linux servers without any problem. But when I try to access ( ie mount) on other Solaris machine, it is giving below error.

Code:
#mount -F nfs IP of nfs server:/share   /localmountpoint
nfs mount : mount: /localmountpoint: not owner

Please help me to get rid of this.

Thanks,
Deepak

---------- Post updated at 03:06 AM ---------- Previous update was at 12:18 AM ----------

I resolved it. While mounting on Solaris machine, I used below command:

Code:
#mount -o vers=3 IP_OF_NFS:/share   /LOCAL_mount_point

Thanks,
Deepak
# 2  
Old 04-16-2010
A little information on the "why" of the issue is interesting. The linux NFS server implements the NFSv4 pseudo filesystem (pFS).

Solaris allows NFS version 3 clients direct access to POSIX Access Control Lists stored in its local file systems. This proprietary sideband protocol, known as NFSACL, provides richer access control than mode bits. Linux implements this protocol for compatibility with the Solaris NFS implementation. The NFSACL protocol never became a standard part of the NFS version 3 specification, however.

The NFS version 4 specification mandates a new version of Access Control Lists that are semantically richer than POSIX ACLs. NFS version 4 ACLs are not fully compatible with POSIX ACLs; as such, some translation between the two is required in an environment that mixes POSIX ACLs and NFS version 4.

Cheers,
Keith

Last edited by DukeNuke2; 04-16-2010 at 10:11 AM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

NFS problem AIX6.1

Hello, I have a problem with an NFS file system. Both AIX servers are AIX6.1 and uses NFS version 3. The problem is that at some point the client server cannot connect to the NFS anymore and when i do df -k it displays the message NFS server <server> not responding still trying. i run the... (2 Replies)
Discussion started by: omonoiatis9
2 Replies

2. AIX

Problem with NFS

Hello everyone I need to share a file system with two Aix boxes, the version is 5.3 tl9. I create the nfs and I can see the files from both servers, but the problem with one of them is that I can write on the file or If I create a new one I canīt. On the server that I create the... (5 Replies)
Discussion started by: lo-lp-kl
5 Replies

3. Filesystems, Disks and Memory

FreeBSD NFS Problem

I am trying to setup 2 network shares that exist on a server. One of the shares is mounted but when i try to mount the second share I am greeted with: # mount srv:/data/music /data/music srv:/data/music: RPCPROG_NFS: RPC: Program not registered Server Info: name: srv #cat /etc/exports:... (0 Replies)
Discussion started by: ezekiel61
0 Replies

4. AIX

NFS vmount problem

AIX's NFS client sends requests on high port numbers by default, and Linux rejects this as the security exposure it is. On AIX i'm use: nfso -o nfs_use_reserved_ports=1 But how i can setup it in autorun? /etc/rc.local right way ? (1 Reply)
Discussion started by: jess_t03
1 Replies

5. AIX

nfs problem...

Got a prob.. I am trying to export a directory and mount it on to a server using NFS. My exporting goes fine as I am able to see the shares through "exportfs -v" But when I am trying to mount the directory on a the client.. I get an error.. "system call error number - 1" pls help.... ... (3 Replies)
Discussion started by: balaji_prk
3 Replies

6. AIX

problem with NFS daemon?????

hi team we had a problem in mounting a network file system from source server to target server and we are not able to mount the file system and we checked all the configuration files and we execute the command in the source server lssrc -a | grep nfsd we found that 2 nfsd in that one is... (5 Replies)
Discussion started by: aixteam
5 Replies

7. Solaris

nfs mount problem

I have a NFS share on a Linux server. When I try to mount it on a Solaris 9 server, I get the following message: nfs mount: <nfs-server-name>: : RPC: Program not registered I have a few other Sun boxes and I can mount the share on them without any problems. (2 Replies)
Discussion started by: soliberus
2 Replies

8. UNIX for Advanced & Expert Users

nfs problem help

I am having problem mounting my nfs mount on my sun solaris 8 through automount using the automaster file. this has been working fine until today, when my workstation tries to mount the nfs mount the following error is logged in /var/adm/message NFS lookup failed for server comserv: error 7... (2 Replies)
Discussion started by: hassan2
2 Replies

9. UNIX for Advanced & Expert Users

NFS Problem

For having shared file system i've been using nfs ,but regarding this i've some problem ,when i execute "df -ak" i can see the shared file system & i can also go there & list files ,but when i want to create anything in this area (Incld. file ,dir ....) i get permission denied. (i've shared related... (6 Replies)
Discussion started by: nikk
6 Replies

10. UNIX for Advanced & Expert Users

NFS Problem !

Hi, I've mounted one of the file systems on another machine manually on /mnt located on my machine , after finishing my work i want to umount this /mnt , but all the time it says " nfs umount : /mnt : is busy " ,although it's not. so i tried to stop & start Nfs services manually (Incld :... (4 Replies)
Discussion started by: nikk
4 Replies
Login or Register to Ask a Question