1753872 Members
7610 Online
108809 Solutions
New Discussion юеВ

Re: NFS checks on HPUX

 
SOLVED
Go to solution
Rick Garland
Honored Contributor

NFS checks on HPUX

Hi all:

Working mainly with HPUX 11.23 on ia64 & RISC systems. Wanting to check the status of NFS mounted filesystems - are they present? are they working? etc. In the Linux world there is the 'stat' command. In HPUX, stat does not exist from command line. Is there something similar in HPUX from the command line to check the NFS filesystems?

Many thanks!
4 REPLIES 4
Rick Garland
Honored Contributor

Re: NFS checks on HPUX

BTW, I am looking at the nfsstat command but what should I be looking for in the output?
mvpel
Trusted Contributor
Solution

Re: NFS checks on HPUX

Perhaps:

df -g /nfs/mountpoint/.

Referencing "." will insure that you trigger the automounter, if you're using it, to get the NFS path, rather than the underlying local-filesystem mountpoint directory or the automounter handle.

The "nfsstat" command displays the overall statistics for the entire NFS subsystem, rather than for a particular filesystem.
Johnson Punniyalingam
Honored Contributor

Re: NFS checks on HPUX

I may not be accurate, so please ignore my inexpedience in NFS,

Btw, check "Bill's -> links helpful ?

http://forums13.itrc.hp.com/service/forums/questionanswer.do?threadId=1394638
Problems are common to all, but attitude makes the difference
Rick Garland
Honored Contributor

Re: NFS checks on HPUX

Many thanks.