- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: fbackup and /var/spool/mqueue huge
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
11-14-2002 07:07 AM
11-14-2002 07:07 AM
fbackup and /var/spool/mqueue huge
I did a backup last night using "fbackup" and I saw this morning the /var filesystem full.
I found several files created during the backup under /var/spool/mqueue (more than 500 Mb created in less than 3 hours). What I m doing wrong?
Thanks in advance and best regards!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2002 07:31 AM
11-14-2002 07:31 AM
Re: fbackup and /var/spool/mqueue huge
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2002 07:33 AM
11-14-2002 07:33 AM
Re: fbackup and /var/spool/mqueue huge
'mqueue' holds sendmail messages. Verify that the recipient specified for your 'mail' (or 'elm', etc.) command is valid, including any aliases.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2002 02:01 PM
11-14-2002 02:01 PM
Re: fbackup and /var/spool/mqueue huge
Have seen similar problems with the services set to NIS, instead of FILES
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2002 08:03 AM
11-15-2002 08:03 AM
Re: fbackup and /var/spool/mqueue huge
Cron will attempt to e-mail the stdout and stderr of cron jobs to the job owner unless output is redirected. Depending on command options and the fbackup config, stdout and stderr can get huge. I suspect that what you're seeing are the "df" portion of the cron mail. Peek at the contents of the "df" file and figure out what to do to redirect/squelch what you want/don't want.
If you want to be sure of stopping the mail altogether, redirect the output of the cron job itself:
30 23 * * 1-5 /usr/local/sbin/fbackup.full > /tmp/fbackup.log 2>&1
Just make sure that you put it somewhere that has enough space. Or send it to /dev/null if you're sure you don't need it.