You are here: Administrator's Guide > Installation Options > Distributed Installation > Performing an Installation for Active-Passive Failover > Install the FME Server Web Services and Configure for Failover

Install the FME Server Services and Configure for Failover

Perform the following tasks:

  1. Install the FME Server Services
  2. Configure the FME Server Services for Failover
  3. Configure Firewall Settings
  4. (Oracle WebLogic only) Disable WebLogic Authentication

Install the FME Server Services

Configure the FME Server Services for Failover

  1. Open each web application properties file located at:

    <WebAppDir>\<fmeServiceName>\WEB-INF\conf\propertiesFile.properties

  2. Find the following line in this file:

    #FAILOVER_SERVER_NAMES=<namelist>

  3. Uncomment this line and replace <namelist> with the names of your FME Server Core hosts, separated by spaces. For example:

    FAILOVER_SERVER_NAMES=fmecore1 fmecore2

  4. Restart the web application server.

Configure Firewall Settings

The FME Server Services and other clients communicate with the FME Server Core over TCP/IP. Requests are sent to the FME Server Core over port 7071. Result messages are returned to clients over a randomly assigned port created by the FME Server Core. Therefore, be sure to configure any firewall settings on the <webHost> with a rule to allow for full communication with the <coreHost> machines.

(Oracle WebLogic only) Disable WebLogic Authentication

If you are using an Oracle WebLogic server, you must disable WebLogic authentication. This step is necessary to prevent WebLogic from intercepting login requests, which interferes with FME Server authentication.

  1. Locate and open the following configuration file in your WebLogic installation:
  2. <WebLogic_install_dir>/user_projects/domains/<your_domain>/config/config.xml

  3. Add (or change) the following lines before the security configuration closing tag </security-configuration>:
  4. <enforce-valid-basic-auth-credentials>

    false

    </enforce-valid-basic-auth-credentials>

  5. Save and close the file.