Title: | NAS Message Queuing Bus |
Notice: | KITS/DOC, see 4.*; Entering QARs, see 9.1; Register in 10 |
Moderator: | PAMSRC::MARCUS EN |
Created: | Wed Feb 27 1991 |
Last Modified: | Fri Jun 06 1997 |
Last Successful Update: | Fri Jun 06 1997 |
Number of topics: | 2898 |
Total number of notes: | 12363 |
Bonjour, When a DMQ shutdown is invoked following by a DMQ startup, we get always the following error: %DMQ-S-SETLNM, Set to DECmessageQ LNM table DMQ$LNM_1000_02260 ...Starting DMQ_C_100002260 (COM Server) %RUN-F-CREPRC, process creation failed -SYSTEM-F-DUPLNAM, duplicate name %DMQ-F-STARTFAIL, Failed on startup of DMQ$COM_SERVER SHOW sys or other find NO DMQ process. If you wait for a couple of minutes, then DMQ startup can be start without problem. Is it a problem of timeout ? (ATTACH_TMO = 600) The DMQ version is OpenVMS VAX V3.2A-22(3222) Salut Alain
T.R | Title | User | Personal Name | Date | Lines |
---|---|---|---|---|---|
2810.1 | It might be... | KLOVIA::MICHELSEN | BEA/DEC MessageQ Engineering | Wed Mar 12 1997 10:27 | 7 |
...that the previous incarnation of the COM Server took too long to shutdown and the DMQ$STARTUP attempted to start a new one with the same name. By the time you took a look on the system the COM Server had completed it's shutdown and was gone. Marty | |||||
2810.2 | OK BUT WHAT CAN I DO? | BIS1::DURY | Alain Dury _ Brussels | Thu Mar 13 1997 03:14 | 1 |
2810.3 | You could do it the simple way... | KLOVIA::MICHELSEN | BEA/DEC MessageQ Engineering | Thu Mar 13 1997 16:19 | 23 |
re: .2 ...by just putting in a delay of 5 seconds in the DMQ$COM_START.COM command procedure, like this: $ if start_servers $ then $ save_uic = f$getjpi("","UIC") $ set uic [1,4] $ @dmq$exe:dmq$forcex DMQ_C_'comp_id' $ set uic 'save_uic' $ wait 00:00:05 !* give the COM Server a chance to exit $ put " " $ endif Or you could do a DMQ$SHUTDOWN, wait a few seconds and then do a DMQ$STARTUP. Marty |