![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| AIX AIX is IBM's industry-leading UNIX operating system that meets the demands of applications that businesses rely upon in today's marketplace. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| NFS Daemon | Stin | SUN Solaris | 4 | 03-18-2008 02:53 AM |
| Daemon 101 | Miller_K | Shell Programming and Scripting | 3 | 05-17-2007 05:53 PM |
| Daemon | santosh123 | High Level Programming | 2 | 02-19-2007 04:42 AM |
| log daemon | Esaia | High Level Programming | 0 | 09-11-2002 01:15 PM |
| daemon | bat_oyu | High Level Programming | 1 | 10-16-2001 07:57 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
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 active and another is inoperative Is this cause for our problem ?or any other thing? could any one help me regarding this issue? |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Stop and Start
I would recommend stopping the nfs daemon and when the service is completely stopped, including the inoperative service I would then start the nfs daemon. See if that resolves your problem.
|
|
#3
|
|||
|
|||
|
and one more problem is that
i am not suppose to stop and start that daemon and is there any other solution for this ???? |
|
#4
|
||||
|
||||
|
I do not know AIX, but I doubt that nfsd has anything to do with mounts. Don't you have a mountd? With most versions of unix, it would handle mounts. Try to restart that if you have one.
|
|
#5
|
|||
|
|||
|
Your nfs mount from the other server could be hung on the inoperative nfsd process on the server where the nfs directory exists. I am a little confused that if the nfs mount is not working at all why recycling the nfsd daemon would be a problem. Is the nfs directory you are trying to mount working on other servers? If so, then you may have another issue. What error are you getting when you try to mount the nfs directory?
|
|
#6
|
|||
|
|||
|
In AIX NFS - like many other daemons - is handled via a "super-daemon" called "System Resource Controller". Many daemons (in SRC teminology "subsystems" and "subservers") are relying on this mechanism.
They have to be registered, then can be listed (lssrc), (re-)started (startsrc, refresh) and stopped (stopsrc) either one by one or - as they are organized in groups - groupwise. "nfs" is a group of such subsystems and a running nfs should look similar to the following: Code:
# lssrc -g nfs Subsystem Group PID Status biod nfs 307374 active nfsd nfs 397322 active rpc.mountd nfs 299080 active rpc.statd nfs 372738 active rpc.lockd nfs 381142 active Code:
stopsrc -g nfs If this is successful start it up again: Code:
startsrc -g nfs Code:
/usr/sys/inst.images -ro,access=machine1 /my/dir After altering this file put its directives into use by issuing Code:
# exportfs -va Code:
# showmount -e After this try mounting it on the remote machine. Hope this helps. bakunin |
|||
| Google The UNIX and Linux Forums |