Server Shutdown

Server shutdown is pretty much reverse of a startup process. Here are the basic steps:

  • Connectivity shutdown. Most listening server sockets are closed here.
  • Plugins shutdown. ContextPlugin.shutdown() method of all context plugins is called. This includes shutdown of the embedded web server.
  • Deinstallation of context plugins. ContextPlugin.deinstall(ContextManager) method is called.
  • Shutdown of context tree. Context.stop() method of all contexts is called.
  • Plugins deinitialization. ContextPlugin.deinitialize() method of all context plugins is called.
  • Failover cluster connection shutdown.
  • Server data storage shutdown.

Was this page helpful?