EEInstancesManager eeInstancesManager=new EEInstancesManager(instanceConfig);
// reset exitcode to make sure on restart it doesn't incur a race condition in the
// monitor where the exitCode is non-zero and it has a process so another reset is attempted
setExitCode(0);
// start instance, this will not sync since sync call was moved to nodeagent, and it is not supposed to sync
setProcess(eeInstancesManager.startInstance());
if(bDebug) System.out.println("\nCurrently Running:" + ProcessManager.getInstance().toString());
} catch (Exception e) {
throw new ProcessManagerException(e);
}