- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- queued cron process
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
12-05-2002 02:43 AM
12-05-2002 02:43 AM
As workaround I decided to restart the cron daemon (kill + /sbin/init.d/cron start) loosing the queued procs.
Now the scheduling run perfectly.
I've 2 questions:
- is it possible to exceed the limit of 100 simultaneus procs modifing some parameters? (i think no).
- is it possibile to know what are the queued procs ?
TIA for the response
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2002 02:50 AM
12-05-2002 02:50 AM
Re: queued cron process
Max jobs is 100
http://www5.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&docId=200000063199330
Kind regards,
Robert-Jan.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2002 02:51 AM
12-05-2002 02:51 AM
Re: queued cron process
look at
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x4034eea29889d611abdb0090277a778c,00.html
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xec9fee3e323bd5118fef0090279cd0f9,00.html
Regards
Steve Steel
Quote of the moment
-------------------
"We are drowning in information but starved for knowledge."
-- John Naisbitt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2002 02:53 AM
12-05-2002 02:53 AM
Re: queued cron process
you have to install this patch to resolve
PHCO_27141
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2002 03:08 AM
12-05-2002 03:08 AM
Re: queued cron process
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2002 03:16 AM
12-05-2002 03:16 AM
Re: queued cron process
If you have PHCO_24702 installed, you need to install PHCO_27141. "PHCO_24702 introduced behavior whereby cron(1M) may no
longer
execute at(1) jobs. When one of the environment variables
LC_ALL, LC_CTYPE or LANG is set when an at(1) job is
scheduled, at(1) jobs may not complete and may leave the
executing shell in a hung state. "
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2002 03:49 AM
12-05-2002 03:49 AM
Re: queued cron process
I'v had the confirmation that the limit is 100, is there a way to show the cron queue (name of the process) ?
Thanks again
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2002 04:48 AM
12-05-2002 04:48 AM
SolutionYou could try the following...
1. Identify cron's PID
UNIX95= ps -C cron -o pid,comm
2. Display possible child processes...
ps -ef | grep
and check the PPID.
Or use ps's -H flag to display the process hierarchy...
UNIX95= ps -eH | more
and search for cron.
UNIX95= ps -efH gives more information.
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-05-2002 08:49 AM
12-05-2002 08:49 AM