- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Message queue table nearly full. How do I fix thi...
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
04-04-2005 01:20 AM
04-04-2005 01:20 AM
Is there a way to flush the message queue or redirect it to an existing email account?
thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2005 01:51 AM
04-04-2005 01:51 AM
Re: Message queue table nearly full. How do I fix this
How about setting up an alias? See "man aliases".
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2005 01:52 AM
04-04-2005 01:52 AM
Re: Message queue table nearly full. How do I fix this
How about creating an alias for this user.
check the /etc/aliases file.
run newaliases after a change.
Best regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2005 02:14 AM
04-04-2005 02:14 AM
Re: Message queue table nearly full. How do I fix this
joeblow : root
Saved the file and ran:
newaliases
Should this do the trick?
I still see the message queue alert at 97%(glance -t)
Message Table (msgmni) 300 290 97 97
Let me know if I need to do something different.
Thanks folks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2005 03:25 AM
04-04-2005 03:25 AM
Re: Message queue table nearly full. How do I fix this
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2005 03:37 AM
04-04-2005 03:37 AM
Re: Message queue table nearly full. How do I fix this
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2005 03:38 AM
04-04-2005 03:38 AM
Re: Message queue table nearly full. How do I fix this
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2005 05:05 AM
04-04-2005 05:05 AM
SolutionThe email situation you describe *only* affects the directory: /var/mail, and specifically the joeblow file. There are several ways to address this:
- Remove the user joeblow from the system and also remove the /var/mail/joeblow file.
- alias joeblow to root (bad idea, now root gets all the junk email, but at least you know where it's coming from)
- alias joeblow to /dev/null as in: joeblow : /dev/null
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2005 06:15 AM
04-04-2005 06:15 AM
Re: Message queue table nearly full. How do I fix this
Real solution - fix the scripts not to email to a non-existent id.
Rgds..Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-05-2005 03:07 AM
04-05-2005 03:07 AM
Re: Message queue table nearly full. How do I fix this
This creates a problem like you are having: a avalid email account where there is no one around to read the email.
I do this in the aliases file:
joeblow : nomail
Even though there is still a valid inbox for joeblow, this attempts to deliver the mail to nomail instead.
There is no 'nomail' account. So, the mail bounces back to the sender with this error:
-- The following addresses
had permanent fatal errors --
nomail
(reason: 550 5.1.1 User unknown)
(expanded from:
This teaches the senders to stop sending email to this guy, especially if they have him in buddy lists, etc. and don't realize it.
Scripts though, you'll need to manage that.