- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- /var/spool/mqueue
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
тАО05-13-2008 09:52 PM
тАО05-13-2008 09:52 PM
My /var/spool/mqueue contaings approx 5 Lac files.
I want to remove these files but not possible in single shot of command " rm /var/spool/mqueue/*"
If I go for group of 50s files like " rm /var/spool/mqueue/TmAA* .... likewise... its happening...but will take few days /week this way.
Can you please suggest me how can i do this
can I remove complete directory "/var/spool/mqueue" by "rm -rf /var/spool/mqueue"
Regards,
Prakash
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-13-2008 10:21 PM
тАО05-13-2008 10:21 PM
SolutionTake a look in this thread
http://forums11.itrc.hp.com/service/forums/questionanswer.do?admit=109447626+1210745968530+28353475&threadId=1164233
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-13-2008 11:35 PM
тАО05-13-2008 11:35 PM
Re: /var/spool/mqueue
/var/spool/mqueue is the directory that mail spools in.
-fuser /var/spool/mqueue/
-stop sendmail (/sbin/init.d/sendmail stop)
-ll -d /var/spool/mqueue/ (note down the permissions)
-rm -rf /var/spool/mqueue/
(it will be faster to delete the dir and recreate it)
recreate the /var/spool/mqueue/ and give the correct permissions, restart the sendmail.
But you need to know and correct the problem of getting such a huge no. of mail queues. That should be the next step.
Regards,
Rasheed Tamton.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-13-2008 11:36 PM
тАО05-13-2008 11:36 PM
Re: /var/spool/mqueue
I tried following loop on my server from the link suggested by you. But its giving message "sh:1: Paramenter not set.
-------------------------------------
for i in `mailq |grep -v Deferred |grep -v mqueue |grep -v - |awk '{print $1}'`
do
rm /var/spool/mqueue/df$i
rm /var/spool/mqueue/qf$i
done
# mailq
/var/spool/mqueue is empty
-----------------------------------
Regards,
Prakash
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-13-2008 11:40 PM
тАО05-13-2008 11:40 PM
Re: /var/spool/mqueue
>If I go for group of 50s files like " rm /var/spool/mqueue/TmAA
With such a huge no. of queues and you were trying to remove it manually already, follow my steps for quick resolution.
Regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 12:46 AM
тАО05-14-2008 12:46 AM
Re: /var/spool/mqueue
I felt better to go with your suggestion. Thanks to others for helping hands.
I have already launched "rm /var/spool/mqueue" and started clearing file.
But have lil question. If in case new created directory "/var/spool/mqueue" will miss by chance any right/owner/group, will it creat any major problem for my server functionality.
(FYI : We are not using mail services of our server at all.)
---------------------------------------------
fuser /var/spool/mqueue/
-stop sendmail (/sbin/init.d/sendmail stop)
-ll -d /var/spool/mqueue/ (note down the permissions)
-rm -rf /var/spool/mqueue/
(it will be faster to delete the dir and recreate it)
recreate the /var/spool/mqueue/ and give the correct permissions, restart the sendmail.
---------------------------------------------
Many thanks to All of you.
Reagards,
Prakash
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 12:52 AM
тАО05-14-2008 12:52 AM
Re: /var/spool/mqueue
If you do not use mail then it will not affect it. But still it is better to mkdir and chown/mod again back for the above dir, if in case, someone else might use it in the future because the UNIX world supposed to be systematic and professional.
If you are new in the forum, please look assigning points section.
Regards,
Rasheed Tamton.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 01:12 AM
тАО05-14-2008 01:12 AM
Re: /var/spool/mqueue
almost similar thread from you. looks like the anser is here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 03:26 AM - edited тАО11-09-2012 12:14 AM
тАО05-14-2008 03:26 AM - edited тАО11-09-2012 12:14 AM
Re: /var/spool/mqueue
>approx 5 Lac files.
How many is that again??
>Rasheed: (it will be faster to delete the dir and recreate it)
It would be faster to learn the right commands to remove massive quantities, so you don't mess up the directory permissions.
If you just want to remove all of them, you can do:
# find /var/spool/mqueue -type f -exec rm -f {} +
>But you need to know and correct the problem of getting such a huge no. of mail queues.'
Right.
>But its giving message "sh:1: Parameter not set.
for i in `mailq |grep -v Deferred |grep -v mqueue |grep -v - |awk '{print $1}'`
Something is wrong with this line. I have no idea why is it has "-v -"? I'll have to try this at work.
One way to check this is to execute:
mailq | grep -v Deferred | grep -v mqueue | grep -v - | awk '{print $1}'
You are probably getting nothing.
># mailq
/var/spool/mqueue is empty
Well you emptied the queue.
And look at your other thread as mentioned by Ahsan:
http://forums.itrc.hp.com/service/forums/questionanswer.do?threadId=1230131
http://h30499.www3.hp.com/t5/Messaging/cleaning-var-spool-mqueue/m-p/5108075
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 03:44 AM
тАО05-14-2008 03:44 AM
Re: /var/spool/mqueue
I found following message on executing your suggested ( If you just want to remove all of them, you can do:
# find /var/spool/mqueue -type f -exec rm -f +)
I found :
find: -exec not terminated with ";"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Can yo uplease tell me what does it mean..
Regards,
Prakash
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 04:16 AM
тАО05-14-2008 04:16 AM
Re: /var/spool/mqueue
>I found: find: -exec not terminated with ";"
>Can you please tell me what does it mean?
Remove the extra ")" at the end of the line. (Or was that ")" just your quoting?)
The "+" acts like a ";" except it makes it work much faster.
If your find doesn't accept that "+", you must be on 10.20?
You could try: exec rm -f {} +
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 04:33 AM
тАО05-14-2008 04:33 AM
Re: /var/spool/mqueue
That ")" was not extracharacter... it was just completion of bracket.
My system is HP UX R 11i
I tried
-exec rm -f{}+
but is giving
find: -exec required an argument.
rm:illegal option --{
rm:illegal option --}
rm:illegal option --+
Regards,
Prakash
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 04:37 AM
тАО05-14-2008 04:37 AM
Re: /var/spool/mqueue
That ")" was not extracharacter... it was just completion of bracket.
My system is HP UX R 11i
I tried
-exec; rm -f{}+
but is giving
find: -exec required an argument.
rm:illegal option --{
rm:illegal option --}
rm:illegal option --+
Can I try
-exec; rm -f
Regards,
Prakash
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 04:39 AM
тАО05-14-2008 04:39 AM
Re: /var/spool/mqueue
find: -exec required an argument.
rm:illegal option --{
rm:illegal option --}
rm:illegal option --+
You need to cut&paste, not retype, you are missing spaces:
-exec rm -f {} +
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 04:46 AM
тАО05-14-2008 04:46 AM
Re: /var/spool/mqueue
In your case using find is not required at all. All the files in /var/spool/mqueue are normal files.
If you do not want to remove the dir, you can use:
cd /var/spool/mqueue
rm *
regards.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 04:49 AM
тАО05-14-2008 04:49 AM
Re: /var/spool/mqueue
>>approx 5 Lac files.
>How many is that again??
I think Prakash is refering to 500,000 files.
Prakash:
Always be prudent when using the rm commands, if you miss something or have something extra, it can have dramatic consequences. If you unsure of the syntax, do a "man
e.g. man find
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 05:13 AM
тАО05-14-2008 05:13 AM
Re: /var/spool/mqueue
~~~~~~~~~
You were right. I was missing spaces. Thanks for your suggestion. It worked and still in execution and removing files ( as I can see free space increasing in bdf ) I think It will take very long time, but ultimately will make few space on my server
Can I use this script in crontab for periodic cleaning of this directory ??
Hi Rasheed
~~~~~~~~~~~
cd /var/spool/mqueue
rm *
Is not workig and returing with message " too many files"
But your earlier suggestion really helped me clearing many MBs of space on my disc and after getting solution from Dennis I interrupted and started Dennis's solution to learn more.
Thanks anyways.
Yogiraj
~~~~~~~
Thanks for your valuable input. Infact i was also afriad of using diff syntax for rm but I cound not find good man for "rm".
I am really thankful to all of you.
Regards,
Prakash.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 05:18 AM
тАО05-14-2008 05:18 AM
Re: /var/spool/mqueue
Of course you can create and schedule a maintenace script... But it would be wiser to find the source of the problem.
If you need any further assistance, please let us know.
>but I cound not find good man for "rm".
man rm
is already very informative and simple. :)
good luck!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 05:20 AM
тАО05-14-2008 05:20 AM
Re: /var/spool/mqueue
500 thousand files are too much. That is why I suggested rmving the dir. find normally consumes CPU, but it depends on your system.
Before you use rm, you always make sure that you are in the correct dir by using pwd command.
rm has -i option. But it is not good for using with many files.
man rm
Regards,
Rasheed Tamton.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 06:33 AM
тАО05-14-2008 06:33 AM
Re: /var/spool/mqueue
You'll need to use find/ls if you have .5 million files. That "too many files" error.
>Can I use this script in crontab for periodic cleaning of this directory?
Sure. But why do you have so many files?
If you want to script it, you can add "-mtime +30" to remove files over 30 days old.
>Rasheed: That is why I suggested rmving the dir. find normally consumes CPU.
I would assume the cost would be the same with the find(1) only being a small cost of removing the files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 06:53 AM
тАО05-14-2008 06:53 AM
Re: /var/spool/mqueue
stop sendmail,umount FS and newfs on /var/spool/mqueue and u ll get rid of the files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-14-2008 04:02 PM
тАО05-14-2008 04:02 PM
Re: /var/spool/mqueue
mailq | grep -v Deferred |grep -v mqueue | grep -v - |awk '{print $1}'
That "grep -v -" is the same as: grep -v -e -
This can all be replaced by:
mailq | awk 'substr($0,1,1) !~ "[\t -]" { print $1 }'
Of course this for loop won't work if there are that many files. You would have to change it to a while read:
mailq | awk 'substr($0,1,1) !~ "[\t -]" { print $1 }' | while read i; do
rm /var/spool/mqueue/?f$i
done
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-15-2008 09:45 PM
тАО05-15-2008 09:45 PM
Re: /var/spool/mqueue
Finally I cleaned my server with the help of all of you.
I tried to give ratings on day berfore yesterday but due to some technical problems on site It was not processing. Yesterday I was unavailable & today its not giving me option to give ratings.
But if there any manual way to give ratings by writing I am giving ratings 10 to all ( Dennis, Rasheed, Fabin, Yogiraj )
Many thanks once again to all of you and all those who didnot contribut but even look at the problem and tried to give me solution.
Regards,
Prakash
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-15-2008 11:12 PM
тАО05-15-2008 11:12 PM
Re: /var/spool/mqueue
I can only request you be patient and try again. :-)
Since the thread isn't closed, it should allow you to assign points.
I've heard that if you try to assign points and close at the same time, the points are ignored, so try in two steps.
>But if there any manual way to give ratings by writing
Well, we thank you. But see if you can get the points to work, since they did initially.