1. Overview
Migrating an existing application server configuration from one release to another is a complex task. It requires a complete understanding of the current server configuration. It also required extensive knowledge of what has changed in the target release. The individuals performing the migration generally must copy and edit several configuration files, and then make the updates needed to keep the same behavior in the new release. If it is not done correctly, the new server does not work as expected, often because some functionality is not supported by the new server. The JBoss Server Migration Tool is a Java application that automatically migrates JBoss EAP and WildFly servers with minimal or no interaction required.
2. Installation
2.1. Minimal Requirements
The JBoss Server Migration Tool is a Java standalone application. It requires Java version 8 or later.
It is recommended that you start the tool using the provided .sh (Linux, Mac OS) and .bat (Windows) scripts.
2.2. Binary Distribution
This User Guide is specific to the tool’s standalone distribution, which ZIP archive may be downloaded from https://github.com/wildfly/wildfly-server-migration/releases
Simply unzip the archive into a directory of your choice. No further setup is needed.
2.3. Source Code
The JBoss Server Migration Tool source code is open source. The source repository is located in GitHub at https://github.com/wildfly/wildfly-server-migration
Apache Maven 3.x or later is required to build the application from source code.
To build the tool, open a terminal, navigate to the root directory of the project, and type the following Maven command:
$ mvn clean install
This creates the standalone distribution ZIP archive in the dist/standalone/target
directory containing the tool. As with the downloaded binary distribution, unzip the ZIP archive into the directory of your choice.
3. Executing the JBoss Server Migration Tool
3.1. Running the JBoss Server Migration Tool
To run the JBoss Server Migration Tool, open a terminal, navigate to the root directory where you downloaded or built the tool, and run the the provided script. This is the jboss-server-migration.sh
file for Linux or the jboss-server-migration.bat
file for Windows.
The following is the basic command to run tool.
$ ./jboss-server-migration.sh --source <server-from-path> --target <server-to-path>
The following arguments are required when you execute the script:
-
--source <server-from-path>
-
--target <server-to-path>
Replace <server-from-path>
with the path to the server you are migrating from.
Replace <server-to-path>
with the path to the server you are migrating to.
These paths should be absolute paths or relative to the current directory.
For example, if the source server base directory relative path is ../jboss-server-old
and the target server base directory relative path is ../jboss-server-new
, execute the following command to migrate the server configuration.
$ ./jboss-server-migration.sh --source ../jboss-server-old --target ../jboss-server-new
Note
|
If no arguments are provided, the tool prints usage instructions and provides a list of supported arguments. |
Upon execution, the tool scans the specified source and target server base directories to identify each server. It then delegates the migration process to the target server.
----------------------------------------------------------
---- JBoss Server Migration Tool -----------------------
----------------------------------------------------------
Retrieving servers...
15:11:33,844 INFO [logger] SOURCE server name: EAP, version: 6.4.0.GA.
15:11:33,859 INFO [logger] TARGET server name: EAP, version: 7.1.0.GA.
This is a fully automated process. The tool execution will fail if a server is not recognized or if the target server does not support migration from the specified source server.
3.2. Running in Non-Interactive Mode
The JBoss Server Migration Tool can be run in either interactive
mode, meaning the user may be prompted for input, or non-interactive
mode, meaning the input values are preconfigured and available to the tool without user input.
To run the tool in non-interactive
mode, provide the argument --non-interactive
, or it’s shorter version -n
, when starting the tool.
$ ./jboss-server-migration.sh --source ../jboss-server-old --target ../jboss-server-new --non-interactive
Note
|
Non-interactive mode predefined behavior is specific to each supported server migration and is described in more detail in the related sections of this document.
|
4. Configuring the JBoss Server Migration Tool
The JBoss Server Migration Tool is configured using a combination of properties defined within the tool, user properties passed on the command line, and system environment variables.
Note that the environment properties required for each supported server migration may differ. Refer to the specific server migration user guide for the list of valid properties for that migration.
4.1. Tool Configuration Properties
You can configure the JBoss Migration Server Tool using the environment.properties
file located in the config/
directory. Valid properties for this standard Java properties file can be found in the guide for each specific server migration.
4.2. User Configuration Properties
User configuration properties are defined in a standard Java properties file and are passed on the command line using the following argument.
-
--environment <path-to-properties-file>
Replace <path-to-properties-file>
with the path to the properties file. This path should be an absolute path or a path relative to the current directory.
The following example demonstrates how to pass user configuration properties on the command line.
$ ./jboss-server-migration.sh --source ../jboss-server-old --target ../jboss-server-new --environment ~/Migration-files/my-configuration.properties
Properties defined in files passed on the command line using the --environment
argument override the ones specified in the server configuration config/
directory.
4.3. System Configuration Properties
System configuration properties may also be used to set migration’s environment properties on the command line, using the following syntax.
-Djboss.server.migration.PROPERTY_NAME=PROPERTY_VALUE
The System property name should be jboss.server.migration
concatenated with the environment property name, the following example demonstrates how to specify migration-report.xml
as the name of the XML report file when starting the JBoss Server Migration Tool.
$ ./jboss-server-migration.sh --source ../jboss-server-old --target ../jboss-server-new -Djboss.server.migration.report.xml.fileName=migration-report.xml
System property names override both user configuration properties and tool configuration properties.
4.4. Logging Configuration
The JBoss Server Migration Tool uses the JBoss Logging framework to log the migration progress. Results are written to the Java console and also to a file named migration.log
, which is located in the current user directory. This log file is created if it does not exist and its content is overwritten on each subsequent execution of the tool.
The logging configuration is provided by the config/logging.properties
file. You can modify the configuration file or specify an alternative logging configuration file by specifying the following system property on the command line.
-Dlogging.configuration=file:<absolute-path-to-alternative-logging-configuration-file>
5. Migration Reports
The tool generates multiples reports, of different formats, after the server migration completes. Such reports may be used to analyse in detail how the target server was setup.
5.1. Migration Tasks
The data collected from executing the server migration logic is structured as a tree of Migration Tasks. Each server migration implementation has a root task, which executes its subtasks, and so on.
Each Migration Task has a name, made of a name string and optional attributes. In most cases the name string defines the task subject or type, while attributes are used to distinguish between siblings, e.g. a task with name string config-file handles migration of a single server config file, and an attribute source is then used to identify which of the config files the task handles, e.g. its file name. The textual format of a task name is string_name(attribute1_name=attribute1_value, attribute2_name=attribute2_value, …), such representation for the previous example could be config-file(source=standalone.xml).
Since a Migration Task may be executed multiple times, under different parent tasks, each execution has a path in the task execution tree, made of the names of the parent tasks, since root, and the task’s own name, e.g. server>standalone>config-file(source=standalone.xml) is a path representation using '>' as each task name’s separator.
Each Migration Task execution obvioulsy has a result, which status may be:
-
Success, the task executed successfully as expected
-
Skipped, the task skipped the execution, in most cases due to not be needed
-
Fail, the task execution failed due to a specific reason
Beyond the status, some tasks may also attach attributes to its execution result, data which may be relevant, for instance to understand why its execution failed or was skipped.
5.2. Summary Report
The Summary Report is generated and printed in the migration console/logs, as it’s name suggests it provides only a summary of the server migration execution, more specifically it lists the name and status of tasks which executed with success or failed status result. An example of such report:
08:04:57,434 INFO [logger]
----------------------------------------------------------------------------------------------------------------------
Task Summary
----------------------------------------------------------------------------------------------------------------------
server ...................................................................................................... SUCCESS
standalone ................................................................................................. SUCCESS
config-files .............................................................................................. SUCCESS
config-file(source=/jboss-server-old/standalone/configuration/standalone.xml) ........................... SUCCESS
subsystems-xml-config ................................................................................... SUCCESS
remove-extension(module=org.jboss.as.threads) .......................................................... SUCCESS
remove-subsystem(namespace=urn:jboss:domain:threads:1.1) ............................................... SUCCESS
subsystems-management-resources ......................................................................... SUCCESS
migrate-subsystem(name=web) ............................................................................ SUCCESS
update-subsystem(name=infinispan) ...................................................................... SUCCESS
update-subsystem(name=ee) .............................................................................. SUCCESS
update-subsystem(name=ejb3) ............................................................................ SUCCESS
update-subsystem(name=remoting) ........................................................................ SUCCESS
add-subsystem(name=batch-jberet) ....................................................................... SUCCESS
add-subsystem(name=bean-validation) .................................................................... SUCCESS
add-subsystem(name=singleton) .......................................................................... SUCCESS
add-subsystem(name=request-controller) ................................................................. SUCCESS
add-subsystem(name=security-manager) ................................................................... SUCCESS
update-subsystem(name=undertow) ........................................................................ SUCCESS
update-subsystem(name=messaging-activemq) .............................................................. SUCCESS
security-realms ......................................................................................... SUCCESS
security-realm(name=ApplicationRealm) .................................................................. SUCCESS
security-realm(name=ManagementRealm) ................................................................... SUCCESS
management-interfaces ................................................................................... SUCCESS
enable-http-upgrade-support ............................................................................ SUCCESS
socket-bindings ......................................................................................... SUCCESS
update-management-https ................................................................................ SUCCESS
----------------------------------------------------------------------------------------------------------------------
Migration Result: SUCCESS
----------------------------------------------------------------------------------------------------------------------
The ident of each task name line defines the task/subtask relationship, in the example above migrate-subsystem(name=web) is a subtask of subsystems-management-resources.
5.2.1. Summary Report Environment Properties
Property Name | Description | Value Type | Default Value |
---|---|---|---|
|
Subtasks will be visible if the task has a path size smaller or equal |
Int |
|
5.3. HTML Report
The HTML Report provides a high level and interactive interface to the migration data, it may be found in the output directory, by default its filename is migration-report.html
The report has three sections: Summary, Environment and Tasks.
The Summary section provides the migration’s start time, information about the source and target servers, and the migration’s result.
The Environment section lists all used environment properties.
Last but not least, the Tasks section provides statistics and a map of the executed Migration Tasks:
Each task is listed by it’s name, which is coloured according to the task status result: green if Success, red if Failed, gray if Skipped.
The Migration Tasks map is interactive, it provides three controls, as highlighted below:
The minus, highlighted with a red circle, hides the task’s subtasks:
The plus, highlighted with a green circle, show’s the task’s subtasks:
Clicking a task name, as the one highlighted with a orange rectangle, shows/hides the task details:
5.3.1. HTML Report Environment Properties
Property Name | Description | Value Type | Default Value |
---|---|---|---|
|
The name of file to write the HTML report. If not set the report will not be generated |
String |
|
|
Subtasks will be visible if the task has a path size smaller or equal |
Int |
|
|
The HTML report template file name |
String |
|
5.4. XML Report
The XML Report is a low level report that provides all migration data gathered by the tool, in a format which may be worked out by 3rd party tools. An example of such report:
<?xml version="1.0" ?>
<server-migration-report xmlns="urn:jboss:server-migration:1.0" start-time="Mon, 11 Jul 2016 06:39:29 UTC">
<servers>
<source name="..." version="..." base-dir="/jboss-server-old"/>
<target name="..." version="..." base-dir="/jboss-server-new"/>
</servers>
<environment>
<property name="baseDir" value="/jboss-server-new/migration"/>
<property name="extensions.remove" value=""/>
<property name="report.xml.fileName" value="migration-report.xml"/>
<property name="socket-bindings.update-management-https.port" value="${jboss.management.https.port:9993}"/>
<property name="subsystem.ee.setup-ee-concurrency-utilities.addDefaultContextService" value="true"/>
<property name="subsystem.ee.setup-ee-concurrency-utilities.addDefaultManagedExecutorService" value="true"/>
<property name="subsystem.ee.setup-ee-concurrency-utilities.addDefaultManagedScheduledExecutorService" value="true"/>
<property name="subsystem.ee.setup-ee-concurrency-utilities.addDefaultManagedThreadFactory" value="true"/>
<!-- ... -->
</environment>
<task number="1" name="server">
<logger logger="org.jboss.migration.core.ServerMigrationTask#1"/>
<result status="SUCCESS"/>
<subtasks>
<task number="2" name="standalone">
<logger logger="org.jboss.migration.core.ServerMigrationTask#2"/>
<result status="SUCCESS"/>
<subtasks>
<task number="3" name="config-files">
<logger logger="org.jboss.migration.core.ServerMigrationTask#3"/>
<result status="SUCCESS"/>
<subtasks>
<task number="4" name="config-file(source=/jboss-server-old/standalone/configuration/standalone-full.xml)">
<logger logger="org.jboss.migration.core.ServerMigrationTask#4"/>
<result status="SUCCESS"/>
<subtasks>
<task number="5" name="subsystems-xml-config">
<logger logger="org.jboss.migration.core.ServerMigrationTask#5"/>
<result status="SUCCESS"/>
<subtasks>
<task number="6" name="remove-extension(module=org.jboss.as.cmp)">
<logger logger="org.jboss.migration.core.ServerMigrationTask#6"/>
<result status="SUCCESS"/>
</task>
<!-- ... -->
</subtasks>
</task>
</subtasks>
</task>
<task number="58" name="config-file(source=/jboss-server-old/standalone/configuration/standalone.xml)">
<logger logger="org.jboss.migration.core.ServerMigrationTask#58"/>
<result status="SUCCESS"/>
<subtasks>
<!-- ... -->
</subtasks>
</task>
</subtasks>
</task>
</subtasks>
</task>
</subtasks>
</task>
</server-migration-report>
The XML Report may be found in the output directory, by default its filename is migration-report.xml
5.4.1. XML Report Environment Properties
Property Name | Description | Value Type | Default Value |
---|---|---|---|
|
The name of file to write the XML report. If not set the report will not be generated |
String |
|
6. Supported Server Migrations
This standard distribution of the JBoss Server Migration Tool includes support for the following server migrations, each with its own User Guide: