Changes between Version 5 and Version 6 of Public/Docs/CAEConfigChange


Ignore:
Timestamp:
Dec 16, 2019, 2:30:28 PM (5 years ago)
Author:
Administrator
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Public/Docs/CAEConfigChange

    v5 v6  
    4444again will show you whether {{{supervise}}} has successfully restarted CAE.
    4545
     46== Stopping CAE
     47You might want to stop CAE for one of the following reasons:
     48* To start it by hand with active console logging and debug any unwanted behaviour CAE has shown in unattended mode.
     49* To run CAE in the debugger on a development system.
     50
     51In both cases, you must stop the supervised CAE on the server to avoid interference with your second instance of the program.
     52
     53Stopping CAE works similarly as restarting CAE. Using the {{{kill}}} command on the CAE process stopped it and caused {{{supervise}}} to restart it. To stop CAE, therefore, first {{{supervise}}} must be stopped.
     54
     55Use the following commands to retrieve the process ids for {{{supervise}}} and CAE. Then use the following commands:
     56{{{
     57ps aux | grep supervise
     58kill <supervise process id>
     59ps aux | grep mono
     60kill <mono process id>
     61}}}