Question
How do I configure Quin-C to use a Distributed Processing Manger that's not installed on the same machine?
Prerequisites
- Follow this article to setup the DPM and DPEs
Answer
- On the Quin-C Server, navigate to the Forensic Tools bin folder (typically "[drive]:\Program Files\AccessData\Forensic Tools\[version]\bin\").
- Open ADG.WeblabSelfHost.exe.config in a text editor.
In the appSettings section, find and change the value of the ProcessManager key to the hostname of the Distributed Processing Manager machine, as shown below:
<add key="ProcessingManager" value="myDPM" /> - In the client section under the system.serviceModel section, find and change the address and name of the endpoint key to the reflect hostname of the Distributed Processing Manager machine, as shown below:
<endpoint address="net.pipe://myDPM/ProcessingManager" binding="netNamedPipeBinding"
bindingConfiguration="LocalBinding"
contract="AccessData.EvidenceProcessing.SharedTypes.Interfaces.IProcessingManagerService"
name="myDPM" /> - Restart the AccessData Quin-C Self Host Service service.
Comments