- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Resource temporarily unavailable
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
Discussions
Discussions
Discussions
Forums
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
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-01-2003 05:56 AM
тАО07-01-2003 05:56 AM
Resource temporarily unavailable
I've noticed a lot of entires in the syslog file (/var/adm/syslog/syslog.log) and was wondering if someone could shed some light on this:
chpt520 tftpdir[3097]: recvfrom: Resource temporarily unavailable
I have always received great support here so I'm sure someone has seen this. Oh, we're running version 10.20. Thanks.
Andre
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-01-2003 05:58 AM
тАО07-01-2003 05:58 AM
Re: Resource temporarily unavailable
are you using TFTP ?
It looks so from the message: "tftpdir"... maybe the tftp is tryng to write to a nfs-mounts ?
Just a guess.
HTH,
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-01-2003 06:04 AM
тАО07-01-2003 06:04 AM
Re: Resource temporarily unavailable
http://us-support.external.hp.com/emse/bin/doc.pl/sid=9a8fcae405edb65d0a?todo=search&searchtext=tftpdir+Resource+temporarily+unavailable+&x=32&y=15&searchcriteria=allwords&searchtype=SEARCH_TECH_DOCS&searchtype=SEARCH_MANUAL&searchtype=SEARCH_TRAINER&searchtype=SEARCH_FORUMS&searchtype=SEARCH_BSD&searchcategory=ALL&rn=25&presort=rank
I've read through some of it and have the following advice:
1)Search for tftp patches, because this has often been resolved for other daemon's with patches.
2)dmesg ioscan... look for some kind of intermittant hardware problem that might cause the tftp home directorhy to be offline. If you have x, try xstm and test out the disks.
3) Check for other errors with regards to networking or heavy load. If the machine is stressed, it might be unable to meet certain requests.
4) Use the scripts I'm attaching to look for possible performance bottlenecks.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-01-2003 06:10 AM
тАО07-01-2003 06:10 AM
Re: Resource temporarily unavailable
There are lot of reasons for getting "resource not available" messages.
Revert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-01-2003 06:11 AM
тАО07-01-2003 06:11 AM
Re: Resource temporarily unavailable
The "Resource temporarily unavailable" message is errno 11, or EAGAIN. The recvfrom() system call will return this error in normal conditions when a socket is in non-blocking mode and there is no data to receive. An application that puts a socket in non-blocking mode should be coded to handle this return code from recvfrom() and should definitely not be making noise about it.
So if your application is working ok you can either ignore this error, or you can ask the vendor to fix the code so it doesn't get logged.
Regards,
Steve