Integration Server 10.15 | Integration Server Administrator's Guide | Server Configuration Parameters | watt.migrate.
 
watt.migrate.
watt.migrate.hidePassword
Controls whether an encoded database password for a JDBC connection pool alias will be saved in migrate.dat. Set watt.migrate.hidePassword to false in the migrate.bat/sh file on the target Integration Server for the migration utility to save the encoded database password. Set to true to omit database passwords for JDBC connection pool aliases from the migrate.dat file. The default is false. Set the watt.migrate.hidePassword value on the targetIntegration Server before running the migration utility.
Example of setting watt.migrate.hidePassword in migrate.bat:
%JAVA_EXE% -Dwatt.migrate.hidePassword=true -Dwatt.migrate.product.dataProvider=com.wm.app.b2b.server.migrate.MigratorAppDataProviderImpl -Dwatt.installer.migrate.destDir="%IS_DIR%" -Dcom.webmethods.sc.config.configRoot="%IS_DIR%\config" -DCDBS.home.path=%DB_DIR% -Djava.library.path="%SSO_DIR%" -ms%JAVA_MIN_MEM% -mx%JAVA_MAX_MEM% -classpath %CLASSPATH% com.wm.app.b2b.server.migrate.cmd.IntegrationServerCmdLineToolMigrationDriver %*
Example of setting watt.migrate.hidePassword in migrate.sh:
$JAVA_RUN $JAVA_D64 -Dwatt.migrate.hidePassword=true -Dwatt.migrate.product.dataProvider=com.wm.app.b2b.server.migrate.MigratorAppDataProviderImpl -Dwatt.installer.migrate.destDir=$IS_DIR -Dcom.web