oo

Configuring Remote Live Staging

With Remote Live staging, your staging and live environments are hosted on separate Liferay servers. When enabled, the site or asset library used to configure staging becomes your staging environment, and the remote server becomes your live environment.

Remote staging hosts the environments on separate Liferay servers.

Before enabling Remote Live staging, you must configure the Liferay servers you want to use for your staging and live environments. You must also create a new blank site or asset library on your remote server and use its ID during staging configuration.

Preparing Your Liferay Servers

If you haven’t already, follow these steps to configure your Liferay servers for Remote Live staging:

  1. Specify a shared authentication key for your servers by adding the following properties to a portal-ext.properties file for both Liferay servers:

    tunneling.servlet.shared.secret=[secret]
    tunneling.servlet.shared.secret.hex=[value]
    

    Each property value depends on your chosen encryption algorithm and whether you use hexadecimal encoding (recommended) or printable ASCII characters (less secure). If you decide to not use hexadecimal encoding, the value for tunneling.servlet.shared.secret must be ASCII compliant.

    The following key lengths are supported by the available encryption algorithms:

    AES: 128, 192, and 256 bit keys

    Blowfish: 32 - 448 bit keys

    DESede (Triple DES): 112 or 168 bit keys. Liferay’s minimum key length does not support 56 bit keys.

  2. Add each server to the other’s list of allowed servers by adding the following property to each server’s portal-ext.properties file:

    tunnel.servlet.hosts.allowed=127.0.0.1,SERVER_IP,[OTHER_SERVER_IP]
    

    If the server has multiple IP addresses, each IP address must be added.

    Important

    If you’re validating IPv6 addresses, you must configure the app server’s JVM to not force the usage of IPv4 addresses. For example, if you’re using Tomcat, add the -Djava.net.preferIPv4Stack=false attribute in the $TOMCAT_HOME\bin\setenv.[bat|sh] file.

  3. Update the remote instance’s Tunnel Authentication Verifier Configuration.

    To do this, go to the Control PanelConfigurationSystem SettingsAPI AuthenticationTunnel Authentication.

    Click /api/liferay/do and insert the additional IP addresses you’re using in the Hosts Allowed field. When finished, click on Update.

    Update the remote instance's Tunnel Authentication Verifier Configuration via the Control Panel.

    Note

    While it is enabled by default, ensure each Liferay server’s tunneling servlet authentication verifier is enabled.

    Alternatively, you can write this configuration into an OSGi file in your Liferay instance (e.g., osgi/configs/com.liferay.portal.security.auth.verifier.internal.tunnel.configuration.TunnelAuthVerifierConfiguration~default.config):

    enabled=true
    hostsAllowed=127.0.0.1,SERVER_IP,[Local server IP address]
    serviceAccessPolicyName=SYSTEM_User_PASSWORD
    urlsIncludes=/api/liferay/do
    
  4. Restart both Liferay servers to implement your changes.

Once restarted, both servers are ready for staging configuration.

Important

When applying patches to a remote staging environment, you must apply them to all your servers. Having servers on different patch levels is not a good practice and can lead to import failures and data corruption. All servers must be updated to the same patch level to ensure remote staging works correctly.

Setting Up Remote Live Staging

Once you’ve prepared your Liferay servers, follow these steps to set up Remote Live staging for a site or asset library:

  1. Open the Staging application in your site or asset library.

    For Sites, go to Site Menu (Site Menu) → PublishingStaging.

    For asset libraries, go to Global Menu (Global Menu) → Applications tabAsset Libraries. Then open the desired asset library and click on Staging under Publishing.

  2. Select Remote Live. This reveals additional configuration fields.

    Select Remote Live staging.

  3. Enter the following Remote Live Connection details:

    Remote Host/IP: Enter your Remote server’s IP address into the Remote Host/IP field. This should match the tunnel.servlet.hosts.allowed property specified in your portal-ext.properties file.

    Remote Port: Enter the port for your remote DXP instance into the Remote Port field.

    Remote Path Context: Enter the Remote Path Context. This is only required if a non-root portal servlet context path is used on the remote Liferay server. Access to this context must not be blocked by a proxy or firewall.

    Remote Site ID/Remote Asset Library ID: Enter the Site ID/Asset Library ID for the desired target.

    Note

    If you’re configuring an IPv6 address, it must contain brackets when entered into the Remote Host/IP field (e.g., [0:0:0:0:0:0:0:1]).

    If the remote server is a cluster, you can set the Remote Host/IP to the cluster’s load balanced IP address to increase the availability of the publishing process. See the Configuring Remote Staging in a Clustered Environment for details.

  4. Determine whether to use a secure network connection (i.e., HTTPS) for publishing pages from staging to live.

  5. Determine whether to define manually the remote URL used for the site or asset library.

  6. (For Sites Only) Select whether you want Page Versioning enabled.

    Enable Page Versioning.

  7. Select the data and content types you want to stage.

    Asset libraries only support staging data for the Documents and Media and Web Content applications.

    With sites, you can stage data for any of the following applications.

    Select the data and content types you want to stage.

    Warning

    When applications are checked, their data is copied, and it may not be possible to edit them directly on the live site. When unchecking an application, first make sure that any changes in staging are published, since they may be lost. See Managing Data and Content Types in Staging for more information.

  8. Click Save to initiate the staging process. The duration of this process depends on the size of your site or asset library.

    Note

    If your attempt to enable Remote Live staging fails, please verify that you’ve properly prepared your servers.

Once the process is complete, you are ready to use Remote Live staging. See Site Staging UI Reference for information about navigating the staging environment’s publishing features.

Remote Live Staging Permissions

When a user attempts to publish changes from staging to live, Liferay passes the user’s email address, screen name, or user ID to the remote server to perform a permission check. To succeed, the publishing user must have identical credentials and permissions on both servers.

To give a local user permission to publish changes from staging to production/live, create an identical user account with identical permissions for the user on the remote server.

To simplify this process, you can use LDAP to copy selected user accounts from your local server to your remote server. See Connecting to an LDAP Directory for more information.

Configuring Remote Staging’s Buffer Size

When you’re using Remote Live staging and you are publishing a large amount of content, this process can be slow and cause a large amount of network traffic. To help with this, Liferay DXP transfers data piecemeal, instead of one large data dump. You can control the size of data transactions by setting the following portal property in your portal-ext.properties file:

staging.remote.transfer.buffer.size

This property sets the file block sizes for remote staging. If a LAR file used for remote staging exceeds this size, the file is split into multiple files prior to transmission and then reassembled on the remote server. The default buffer size is 10 megabytes.

Disabling Remote Live Staging

Disabling Remote Live staging disables the connection between your environments without deleting any data. Since no data is erased and no processes are started, disabling Remote Live staging is almost instantaneous.

Warning

When you disable remote staging, you must ensure the live site or asset library is still accessible so both sides can communicate. Do not shut down your live environment. If the network connection is ever lost between environments, an error message appears and instructs you to forcibly disable staging.

Forcibly disabling staging erases your staging information from your staging server, not the content. The live environment remains in a locked state. A possible workaround is to create a new live site or asset library and import content to it, if necessary.

Follow these steps to disable Remote Live Staging:

  1. Open the Staging application in your site or asset library.

  2. Click the Actions button ( Actions button ) located in the Application bar and select Staging Configuration.

    Click the Actions button in the Application bar, and select Staging Configuration

  3. Select None for your configuration and click Save.

Capability:
Feature: