Sidebar

QIE restarts whenever I log off the Windows 2003 server

0 votes
247 views
asked Aug 8, 2013 by mike-r-7535 (13,830 points)

QIE runs in a Windows 2003 environment, and it shuts down whenever I log off the server.

In the commons-daemon.*.log, I have the following:

[2013-08-06 12:24:15] [info]  [11956] Console LOGOFF event signaled

And at the same exact time in the qie.log, I have the following:

2013-08-06 12:24:15,476 MDT [Thread-2] WARN com.qvera.qie.web.app.server.CommonServiceImpl - CommonServiceImpl.destroy() shutting down... 

Why is the LOGOFF tied to shutting down QIE?  And how can I prevent the behavior?

1 Answer

0 votes
 
Best answer

QIE has special logic for shutting down gracefully so that it can stop channels and save its state. The system can notify QIE if it needs to shutdown. (For example if the server is restarting).  In Windows 2003, LOGOFF events also trigger the QIE shutdown hooks.

To prevent LOGOFF events from triggering the shutdown of QIE, you can add the -Xrs to the list of Java Arguments in the Startup tab.  This option still allows the shutdown logic to be called when the system restarts.

answered Aug 8, 2013 by mike-r-7535 (13,830 points)
...