If you receive an error message during the install configuration, it's usually due to the low-level operating system security configuration. This article explains how to generate a network tracing log to help our support team diagnose the issue with you
While the error message you received is still open:
You will see a file called: "RedGate.SqlClone.Agent.Service.exe.config" there. Open this file up with a text editor and add this section immediately under the opening <configuration> tag:
<system.diagnostics>
<sources>
<source name="System.Net" tracemode="includehex" maxdatasize="1024">
<listeners>
<add name="System.Net"/>
</listeners>
</source>
<source name="System.Net.Sockets">
<listeners>
<add name="System.Net"/>
</listeners>
</source>
<source name="System.Net.Cache">
<listeners>
<add name="System.Net"/>
</listeners>
</source>
</sources>
<switches>
<add name="System.Net" value="Verbose"/>
<add name="System.Net.Sockets" value="Verbose"/>
<add name="System.Net.Cache" value="Verbose"/>
</switches>
<sharedListeners>
<add name="System.Net" type="System.Diagnostics.TextWriterTraceListener" initializeData="network.log" />
</sharedListeners>
<trace autoflush="true"/>
</system.diagnostics> |