- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Queues msteriously stopped
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-21-2006 01:27 AM
12-21-2006 01:27 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 02:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 02:43 AM
12-21-2006 02:43 AM
Re: Queues msteriously stopped
No strings found?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 02:49 AM
12-21-2006 02:49 AM
Re: Queues msteriously stopped
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 04:06 AM
12-21-2006 04:06 AM
Re: Queues msteriously stopped
did the system crash and reboot without an $ ENABLE AUTOSTART/QUEUES command during startup ?
If queues get stopped due to some other error (like exceeding MAXPROCESSCNT), you would most likely have to explicitly start them again.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 04:08 AM
12-21-2006 04:08 AM
Re: Queues msteriously stopped
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 04:11 AM
12-21-2006 04:11 AM
Re: Queues msteriously stopped
did the queue-manager crash ? SHOW PROC/ACCOUNTING/ID=
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 04:33 AM
12-21-2006 04:33 AM
Re: Queues msteriously stopped
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 04:43 AM
12-21-2006 04:43 AM
Re: Queues msteriously stopped
is OPERATOR.LOG active ? Does TYPE/TAIL SYS$MANAGER:OPERATOR.LOG show entries from the current date ?
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 04:44 AM
12-21-2006 04:44 AM
Re: Queues msteriously stopped
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 04:56 AM
12-21-2006 04:56 AM
Re: Queues msteriously stopped
$ SEARCH SYS$MANAGER:OPERATOR.LOG QMAN,QUEUE
any matches ?
Does $ ACC/PROC=BATCH/SINCE=YESTERDAY show any batch jobs with error status (may also need /FULL to get more information) ? With the accounting data, you could at least find out, WHEN or IF batch jobs were running yesterday or until which time they were still running.
Volker.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 05:01 AM
12-21-2006 05:01 AM
Re: Queues msteriously stopped
It did find matches but not from yesterday. The dates were from the 6th and 13th of december.
NO batch queue errors
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 05:31 AM
12-21-2006 05:31 AM
Re: Queues msteriously stopped
There is the possibility that someone stopped the queues. For example, here we have command procedures that could start and stop and modify all queues with a single execution of a procedure. A DISABLE AUTOSTART command could've been done. Could someone have possibly stopped them?
Just to avoid future problems you should check your startup procedures and make sure you have an ENABLE AUTOSTART command.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 06:01 AM
12-21-2006 06:01 AM
Re: Queues msteriously stopped
Thanks everyone
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2006 08:32 AM
12-21-2006 08:32 AM
Re: Queues msteriously stopped
Although it won't help for answering retrospective questions now, if you have queues mysteriously changing state, don't forget you can audit them. Add an ACE to the queue so that any changes are logged to the audit journal:
$ SET SECURITY/CLASS=QUEUE queue-name -
/ACL=(AUDIT=SECURITY,ACCESS=MANAGE+CONTROL+SUCCESS)
$ SET AUDIT/AUDIT/ENABLE=ACL
This probably doesn't audit changes in the AUTOSTART state. A quick look suggests it may be possible to audit ENABLE and DISABLE commands, but it's a bit complicated. You'd have to make copies of QUEMAN.EXE, call them QUEMAN_ENABLE.EXE and QUEMAN_DISABLE.EXE and put audit or alarm ACEs on them for ACCESS=EXECUTE+SUCCESS. Now make a copy of SYS$UPDATE:ENABLE.CLD and modify the image for the ENABLE command to QUEMAN_ENABLE, and DISABLE to QUEMAN_DISABLE and apply it to the system wide DCLTABLES.
If you get an unexplained change in the future, you can then look at the audit journal to determine who might be responsible.