NFS Problem


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users NFS Problem
# 1  
Old 02-24-2002
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 file system in remote machine & fill auto_master & auto_direct properly ).
the related process is also up i think ....

could anyone help me in resolving this problem ?
# 2  
Old 02-26-2002
Regarding the NFS problem i'm really in trouble ,could anyone help me?,

i've one more problem ,in another machine when i want to mount a remote file system manually ( mount -F nfs .......) it gives me :
"RPC not registered" , what does it mean?

Rgrds,
nikk
# 3  
Old 02-26-2002
Check your options, and users.
The machine that exports the files, must give write permissions.
The machine that mounts the dir, must mount -rw.

You may be 'nikk' on two machines, but the user numbers may be different.
Make sure they correspond on all machines.

do man on exportfs and mount, the actual options may vary from system to system

Atle
# 4  
Old 02-26-2002
About RPC .. not registred

This error is typical when you havent enabled RPC.

NFS sits on top of RPC (Remote Procedure Call) and you must have that daemon enabled as well.

/etc/services contains lots of interesting stuff, also, make sure that the daemon runs.

Atle
# 5  
Old 03-14-2002
Sounds like your nfsd daemon is not running.

You can start it by running /etc/init.d/nfs.server start.

Also, to solve the 'permission denied' problem use the rw option when you do the mount. (ie mount -F nfs -o rw .........)
# 6  
Old 03-16-2002
Smilie The right solution is often the simplest Smilie
# 7  
Old 03-24-2002
Computer NFS/Automounting Configuring

ON SERVER:

# vi /etc/dfs/dfstab
share -F nfs -o ro=client /usr/share/man
# /etc/init.d/nfs.server start ### starts server daemons

TELNET CLIENT or physicaly move your body to the client.

# mount server:/usr/share/man /usr/share/man ### to start mounting immediatly

!!!!!!!!!!!!if you have man directory in /usr/share, remove it!!!!!!!!!

or if you want the client mount server's man pages at boot:
# /etc/vfstab ### on client !
server:/usr/share/man - /usr/share/man nfs - yes soft
# vi /etc/auto_master
/- auto_direct
# vi /etc/auto_direct
/usr/share/man server:/usr/share/man
# automount -v
# man ls ### on client
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. Solaris

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. #mount -F nfs IP of nfs server:/share /localmountpoint nfs mount : mount:... (1 Reply)
Discussion started by: naw_deepak
1 Replies

4. 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

5. 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

6. 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

7. 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

8. 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

9. 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

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