- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- nfs problem
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 05:16 PM
07-11-2005 05:16 PM
nfs problem
Iam facing a stange nfs problem
In the system /local directory is exported in the server
we will be able to access from other systems also but intermintantly ig give nfs server not responding error for this local directory
All the nfs services are running in this systems ..
If I give showmount -a it gives the following error
showmount: mfptest1: RPC: Program not reGISTERD
Is this error has anything to do with
the NFS problem
Thanks
Binu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 06:24 PM
07-11-2005 06:24 PM
Re: nfs problem
have you disabled the sunrpc port?
Regards
Deepak
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 06:30 PM
07-11-2005 06:30 PM
Re: nfs problem
How to check wheather the port is disabled
Binu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 07:28 PM
07-11-2005 07:28 PM
Re: nfs problem
Usually you will receive 'Program not registered' error when there is an issue with daemons running.You can verify nfs related process using rpcinfo command.
rpcinfo -p
rpcinfo -u
You can receive â server not respondingâ messages when the server or
network is heavily loaded and the RPC requests are timing out. Try
doubling the timeo mount option for the directory.
/etc/fstab
nfs_server:/local /nfs_mount nfs nosuid,timeo=14 0 0
If lot of clients are mounting nfs shares from this server try increasing the number of nfsd daemons running by increasing NUM_NFSD variable in /etc/rc.config.d/nfsconf.
Sudeesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 07:30 PM
07-11-2005 07:30 PM
Re: nfs problem
This is an abstract from 'troubleshooting nfs service' document.
To Diagnose NFS Performance Problems
1. Issue the following command on several of your NFS clients:
nfsstat -rc
2. If the timeout and retrans values displayed by nfsstat -rc are
high, but the badxid value is close to zero, packets are being dropped
before they get to the NFS server.
Try decreasing the values of the wsize and rsize mount options to
4096 or 2048 on the NFS clients. See â To Change the Default Mount
Optionsâ on page 44.
See Installing and Administering LAN/9000 Software for
information on troubleshooting LAN problems.
3. If the timeout and badxid values displayed by nfsstat -rc are of
the same magnitude, your server is probably slow. Client RPC
requests are timing out and being retransmitted before the NFS
server has a chance to respond to them.
See â To Improve NFS Server Performanceâ on page 326.
Try doubling the value of the timeo mount option on the NFS clients.
See â To Change the Default Mount Optionsâ on page 44.
4. If the null value displayed by nfsstat -rc is greater than 1%, the
automounter is trying too frequently to mount a directory from
multiple servers. It sends out null procedure calls to all the
configured servers and mounts the directory from the server that
answers first.
Increase the time between mount attempts by adding the -tm 60
option to the AUTO_OPTIONS variable in
/etc/rc.config.d/nfsconf, as follows:
AUTO_OPTIONS=â -f $AUTO_MASTER -tm 60â
Then, restart the automounter. See â To Restart the Automounterâ on
page 90.
Continue to increase the value of the -tm parameter until the null
value displayed by nfsstat is less than 1%.
5. Issue the following command on any machine on the network:
netstat -i
Troubleshooting NFS Services
Performance Tuning
Chapter 8 325
The number of collisions (Coll) divided by the number of output
packets (Opkts) is the collision rate. If your collision rate is greater
than 10%, consider dividing your network into smaller segments and
putting an NFS server on each segment. See Installing and
Administering LAN/9000 Software for information on dividing your
network.
Sudeesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 07:37 PM
07-11-2005 07:37 PM
Re: nfs problem
The problem is that rpc.mountd on the HPUX machine is not being started.
This is started from the inetd program. To start this, edit the
file /etc/inetd.conf on the HPUX machine.
The line that follows should be uncommented:
rpc dgram udp wait root /usr/etc/rpc.mountd 100005 1 rpc.mountd
Then, issue the command:
/etc/inetd -c &
This will reread the /etc/inetd.conf file and rpc.mountd will now start when a mount request comes in from a foreign node.
Regards
Vinod K
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2005 07:41 PM
07-11-2005 07:41 PM
Re: nfs problem
"nmap" is the utility for this. this will be installed by default linux.
Reds
Deepak