Configuring Migration Manager on the Destination Server

Changing parameters of Migration Manager connection to Migration Agent must be performed only in case the same changes are done to the Migration Agent configuration.

To change parameters of Migration Manager connection to Migration Agent:

  1. Open for editing the %plesk_dir%\PMM\Migration\migrmng.exe.config file and locate the "/configuration/appSettings" element.

    %plesk_dir% is the system variable defining the folder where PPP is installed.

  2. To change the port number, enter the required value in the string <add key="Port" value="6489" /> instead of 6489.

    For example, if you want port 7788 to be used, this string should be <add key="Port" value="7788" />.

  3. To change Migration Agent URI, enter the required value in the string <add key="ObjectUri" value="WinAgentURI" /> instead of WinAgentURI.

    For example, if you want "MigrationAgent325" to be used as the Migration URI, the string should be <add key="ObjectUri" value="MigrationAgent325" />.

  4. To change channel type, enter the required value in the string <add key="ChannelType" value="HTTP" /> instead of HTTP.

    For example, if you want to use TCP, this string should be <add key="ChannelType" value="TCP" />.

  5. Save the file.

Default content of migrmng.exe.config

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
	<configSections>
		<section name="Platforms" type="ForeignMigratorEngineCore.Configuration.PlatformsSectionHandler,ForeignMigratorEngineCore"/>
	</configSections>
	<startup>
		<supportedRuntime version = "v2.0.50727" />
		<supportedRuntime version = "v1.1.4322" />
	</startup>

<!-- These are the settings you may reconfigure -->
	<appSettings>
		<add key="Port" value="6489" />
		<add key="ObjectUri" value="WinAgentURI" />
		<add key="ChannelType" value="HTTP" />

		<!-- The dump file location and file name defined in Panel GUI override settings in this configuration file -->
		<add key="DumpDirectory" value="" />
		<add key="DumpName" value="" />
		<add key="UnixDumpDirectory" value="/usr/local" />
		<add key="LogUseDefaultCulture" value="false" />
	</appSettings>
<!-- End of the settings you may reconfigure -->

	<Platforms>
	...
	</Platforms>
	</configuration>

Please send us your feedback on this help page.