Hello Frank,
Is it possible to run AgentConfigManager with different ports on same machine and with different user sets. I a using V3. Currently when I try that, Only the last USM object that is created remains.
agent = new AgentConfigManager(LOCAL_ENGINE_ID,
messageDispatcher,
null,
moServers,
ThreadPool.create("NodeAgent", 3),
configurationFactory,
new DefaultMOPersistenceProvider(moServers, ""),
engineBootsCounterFile, null);
The USM objects of different AgentConfigManager objects are replaced because of this code
usm = createUSM();
if (usm != null) {
SecurityModels.getInstance().addSecurityModel(usm);
}
Can you please help here? Is it a good idea to override createUSM method?