- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- HPUX 10.2 error message
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-30-2002 09:39 AM
07-30-2002 09:39 AM
I have been getting an error message on the main console for about 6 months or so. The message is:
JUL 30 08:27:48 sys000 sendmail[769]: NOQUEUE: low on space (have 0, SMTP-DAEMON needs 101 in /var/spool/mqueue)
When I run a bdf command /var is at 47%.
/var/spool/mqueue is empty.
This error has not had any impact on productivity, but I would love to make it go away. I have had several techies look into it with no luck. Can anybody help point me in the right direction?
We are running HP-UX 10.2 on HP9000 H50. I would appreciate any input at all.
Thanx,
Carla
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2002 09:56 AM
07-30-2002 09:56 AM
Re: HPUX 10.2 error message
Can you still send and receive mail? What are the modebit, owner and groupid of /var/spool/mqueue?
Hai
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2002 10:18 AM
07-30-2002 10:18 AM
Re: HPUX 10.2 error message
What are the permissions on the dir /var/spool/mqueue?
They should be 755 bin:bin.
Also check the /etc/mail/sendmail.cf file - specifically the following line
O QueueDirectory=/var/spool/mqueue
make sure that indeed you're using /var/spool/mqueue as the queue dir.
You also want to check that nothing/nobody is sending anything huge through you that could be filling /var/spool/mqueue.
Check the following entry in sendmail.cf
O MaxMessageSize=1000000
If it's commented out then there is NO size limit. If it's huge, larger than what /var has available then again this could be causing the msg. Edit it down to a reasonable size & bounce sendmail.
Finally, I'd bounce sendmail. Actually I'd stop it & make sure all instances are gone & nothing else is spawning a sendmail session.
Then restart it
/sbin/init.d/sendmail stop
/sbin/init.d/sendmail start
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2002 10:23 AM
07-30-2002 10:23 AM
Re: HPUX 10.2 error message
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2002 10:27 AM
07-30-2002 10:27 AM
Re: HPUX 10.2 error message
Can you post the output of the following command:
# bdf /var
And attach your /etc/mail/sendmail.cf to this post.
Hai
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2002 10:53 AM
07-30-2002 10:53 AM
Re: HPUX 10.2 error message
your /var/spool/mqueue looks right.
Instead of posting your /etc/mail/sendmail.cf, can you run and post the output of the two commands below:
# bdf /var
# grep MinFree /etc/mail/sendmail.cf
Remember to type in MinFree exactly as it looks here.
Hai
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2002 11:17 AM
07-30-2002 11:17 AM
SolutionThe permissions & ownership on /var/spool/mqueue look good.
Another thing I forgot to ask is - How big is /var? What value is under the kbytes column in that bdf output?
It's still possible that a large e-mail is filling the queue dir up. If this happens sendmail will discard the msg, I believe. But it still kicks out an error message.
You should check sendmail's log - by default it's
/var/adm/syslog/mail.log
Relate the time in the console msg to the mail.log. I suspect you'll find that it's some rogue, large email that's doing this to you.
You should also check the system's log - it's
/var/adm/syslog/syslog.log
Check it to see if there are any entries stating that /var has filled up. You'll have to relate the LV to the directory - it'll look like /dev/vg00/lvolX. Where X will be a decimal number.
To check the sendmail.cf file do the following
cd /etc/mail
grep QueueDirectory sendmail.cf
Enter that as shown cap Q & D
The return should look like
O QueueDirectory=/var/spool/mqueue
If it states another directory, then you need to check the space available in that filesystem.
To check the max msg size - same thing
grep MaxMessageSize sendmail.cf
Output should look like
O MaxMessageSize=1000000
Also check for the following - MinFree - as follows:
grep MinFree sendmail.cf
If it's value is 100 (default) or less & /var is almost full (< 50 KB free) then sendmail will reject it & log the msg you see.
But that begs the question as to what's filling /var?
If large emails are eating your space up, set the MaxMessageSize to a sane size (1 Mb?) & sendmail will reject those huge emails.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-30-2002 03:35 PM
07-30-2002 03:35 PM
Re: HPUX 10.2 error message
the bdf for /var is:
kbytes used avail %used Mounted on
716800 326318 366355 %47 /var
You guys have given me a lot to look at. I will try to get to the other ideas tomorrow. I'm sure there will be some points to follow...The techies all scratched their heads and had no suggestions. No points for Tech support! I think you guys are on to something here!
Thank you!
Carla