- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- vmunix: NFS server <servername> not responding sti...
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
06-05-2000 08:18 AM
06-05-2000 08:18 AM
I find this line sporadically in my clients (hp-ux 10.20) syslog file:
vmunix: NFS server
What does it mean?
Probably a temporarily congestion on the local ethernet?
I checked with ping (between client and nfs-server) and had no packet losses while receiving the entry in syslog.
Is the nfs-server overloaded?
I don't think so.
Any ideas, what the entry means?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2000 08:45 AM
06-05-2000 08:45 AM
Re: vmunix: NFS server <servername> not responding still trying
I hope you have created the directory.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2000 05:04 PM
06-05-2000 05:04 PM
Re: vmunix: NFS server <servername> not responding still trying
If a system has NFS mounted the other system since the last reboot, it will keep checking to see if its availiable. If the other system gets rebooted or goes off the network, that error message will happen. Check the time the error message was reported, it should coincide with a small downtime or outage for the other system.
Good Luck!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2000 05:52 PM
06-05-2000 05:52 PM
Re: vmunix: NFS server <servername> not responding still trying
It has some really good NFS tuning tips
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2000 08:18 PM
06-05-2000 08:18 PM
SolutionWhen anyone is trying to mount NFS the person has to check the following daemons should be running on the server.
NFSD
RPCBIND/PORTMAPPER
RPC.STATD
RPC.LOCKD
RPC.MOUNTD
Pls check this with the help of command
rpcinfo -p
which will show you what is running in your system.
For NFS mount check the server and client /etc/hosts file.
there should have entry for both client and server.
try to ping to both the server and client and check whether it is through.
Also check the /etc/exports file on the server to check wich file system server has given permission to export.try to see the file /etc/xtab after giving the command
exportfs -a or
try to type the command on sever
/sbin/init.d/nfs.server start
/sbin/init.d/nfs.client start
Then try to mount the file system like
try the following command on client.
mount -o soft server name:/file system name /mounted file system name on client.
rememeber always server is exporting and client is mounting a file system.
Hope this will sort out your problem.
Regards
Nikhil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2000 08:29 PM
06-05-2000 08:29 PM
Re: vmunix: NFS server <servername> not responding still trying
Thank you for the answer, next i will try to increase the timeo option, as you mentioned.
on my studies i discovered another aspect:
using
netstat -s
on the nfs-server i saw the following output for udp:
udp:
0 incomplete headers
0 bad data length fields
0 bad checksums
25682 socket overflows # !
0 data discards
now i assume that the log-entries in my clients syslog files belong to socket overflows on the server, which belongs to a number of running nfsd's which is too small.
my nfs-server has 64 nfsd's running (configured throug NUM_NFSD switch in nfsd.conf ) .
is it possible that this server-side number is too small for 16 client-workstations running a CAD-client program (IDEAS MS7)?
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2000 01:12 AM
06-08-2000 01:12 AM
Re: vmunix: NFS server <servername> not responding still trying
I read once that the number of nfsd's should be equal to the sum of all biod's of all clients... Sounds a bit silly, unless all clients are using the maximal amount of NFS connections simultaneously !
A silly way to determine the number of nfsd's required: set up a large number (100 or more); put the system in "real life config" (have the clients use it), run the top command on the server, and count how many nfsd's are active (on top of the list). I told you it is silly... ;-)
Hope it helps, Emmanuel