Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Section
Column

Before you begin the migration process:

  • Please check the Supported Platforms to confirm the latest requirements. Note that v10.0.x is certified on OpenJDK (11.0.6).
  • Please read and understand the Planning for v10.0 which may require your action before you begin your upgrade.
Warning
titlev10 License Key Required
  • A v10 license key is required for this version of  if you are upgrading from a prior version. Request a v10 license by completing this form before you begin the upgrade. 

Determine Your Upgrade Path

Your frevvo Version

Recommended Upgrade Path to v10.0.x

7.4.x or earlierUpgrade to v9.0, then upgrade to v10.0
v9.0.x

Upgrade directly to v10.0

Note: Upgrades from  6.3.9 - 6.3.12 through v7.4.x are supported but these versions are not available for general release.

Migrating from HSQLDB

 does not support the use of HSQLDB for use beyond demo/trials of the frevvo software. If by mistake you continued to use the demo/trial HSQLDB database for production use, you will need to first migrate your data to one of  supported production databases BEFORE you can upgrade to later versions of frevvo.

Please follow the instructions on this page to perform your upgrade.

Column
width25%

Table of Contents
maxLevel2

...

Please read the following upgrade steps prior to starting the migration.

Note

frevvo recommends that you test the upgrade process on your test server before performing it on your production server. Contact your frevvo Account Manager for information if you do not have a test environment.

Prepare for the upgrade

  1. Upgrade Resources
    1. v10 will only allow upgrade of resources that are v9 and later. Each user's account and associated resources is upgraded the first time they log in after each upgrade. Users who never log in (old or stale users, perhaps) may have an account that is several versions behind. This can also happen if you are doing a multi-step upgrade from a version prior to v9.
    2. To help admins manage this, in v9 the User Upgrade Threshold was introduced in the Configuration Checklist screen. The admin can use the information in this table to either delete the non-upgraded users or login as that user to upgrade them. 

       

    3. You must login-as each user listed in order to upgrade their resources (or remove them if the accounts are old/stale.) If you skip this step and have pre-v9 resources, your v10 upgrade will fail. 

      Note
      titleLDAP Users

      LDAP Security Manager tenants may see users listed in the Configuration Checklist - User Upgrade Threshold that no longer exist in the AD, and cannot be deleted or upgraded in the  UI. To resolve this, please contact support@frevvo.com.

  2. Please read and understand the Migration Considerations which may require your action before beginning.

    1. Install OpenJDK (11.x)before beginning.
  3. Stop with one of the methods listed below:

    1. Execute <frevvo-home>\stop-frevvo.[bat,sh] for versions previous to v10.x.

    2. If you are upgrading from v7.x, you will also need to stop the Insight Server by closing the window or if you are using the tomcat bundle by typing these commands in the <frevvo-home>\solr directory of your existing installation.

      bin\solr.cmd stop -all

    3. Stop frevvo and the Insight Server through the Computer Management Services console if they are running as Window's services.

  4. Backup the forms database from your current installation.
  5. Backup the current  server's installation directory so that you have a copy of all custom configuration parameters.

  6. Request a v10 license if you are upgrading from a version prior to v10.0.x.

...

  1. Download the latest v10.0.x software. The download is a zip file. Extract the contents to any folder of your choice. This folder will be referred to as <frevvo-home> (note that the zip already contains a top level frevvo folder).
  2. Install a JDBC Driver.
  3. If you increased Memory Settings in your previous installation, make those changes to the appropriate files in the new installation. Refer to  Hardware and Memory Requirements for the details.
  4. Navigate to the server.xml file in the <frevvo-home>\tomcat\conf directory of your v10.0.x installation

Configure the Database and Email

...

Expand
titleClick here to expand if you are upgrading from a version prior to v7.4...

The frevvo.xml and insight.xml files are embedded in the frevvo war in v10.0.x. Configuring features is now done by adding properties to the <frevvo-home>\tomcat\frevvo-config.properties file.

The properties follow a simple property=value syntax. The frevvo-config.properties file provided in the frevvo tomcat bundle contains default values for the following properties:

    • frevvo war settings for email
    • HTTP Proxy Configuration for licensing
    • Insight Settings to enable/disable Insight and the URL to the location of the Insight Server
    • SAML certificate keystore settings for the key and password
    • Filesystem Connector Settings for the URL to the Filesystem Connector and the metadata prefix
    • SharePoint Connector Settings for the URL to the connector

Context parameters, previously added to the frevvo.xml or modified in web.xml and insight.xml files, must be converted to the property format. Follow the instructions below.

  1. Examine the frevvo.xml file from your previous installation and open the <frevvo-home>\tomcat\conf\frevvo-config.properties in the v10.0+ Installation.
    1. Add the values of any parameters that were changed in the frevvo.xml after the equal sign to the appropriate property in the frevvo-config.properties file.
    2. Remove the # in front of any properties you are going to use.
    3. Compare the frevvo.users.schemaName property in the frevvo.xml file from the version of frevvo you are upgrading from to the properties in the frevvo schema name settings - needed for 6.0 upgrade only section of the frevvo-config.properties file. If they are not the same, follow these steps:
      1. If the value in the parameter in the frevvo.xml file is not users, copy the value from the frevvo.xml and add it after the equal sign for the frevvo.users.schemaName property in frevvo-config.properties. 

      2. For SQL server database migration: 

        1. Uncomment " frevvo.users.schemaName" value=users.dbo 

        2. Comment out frevvo.users.schemaName.  If the value in the parameter in the frevvo.xml file is not users.dbo, copy the value from the frevvo.xml and add it after the equal sign for the frevvo.users.schemaName property in frevvo-config.properties.

Section
Column
width50%
Code Block
titlefrevvo.xml from previous release
<!--  
        frevvo schema name settings - needed for 6.0 upgrade only
     -->
    <Parameter name="frevvo.users.schemaName" value="users" override="false"/>
    <!--  SQL Server 
    <Parameter name="frevvo.users.schemaName" value="users.dbo" override="false"/>
     -->
Column
width50%
Code Block
titlefrevvo-config.properties in v7.4+
# frevvo schema name settings - needed for 6.0 upgrade only
frevvo.users.schemaName=users
# SQL Server schema name 
#frevvo.users.schemaName=users.dbo

2. Add properties for any parameters that you added to the frevvo.xml in your previous installation. Refer to Installation Tasks for information about additional configuration properties that can be added to the frevvo-config.properties file to customize  features.

3. Any parameter changes that were made to the web.xml file in previous releases must be converted to properties and added to the frevvo-config.properties file.

    1. Unpack the frevvo.war file from your previous installation to a temporary location of your choice: e.g. c:\tmp\frevvo-war. Change the file extension from .war to .zip if necessary.
    2. Edit c:\tmp\frevvo\WEB-INF\web.xml.
    3. Locate the parameters that were changed, convert them to properties and add them to the frevvo-config.properties file.
    4. If you are upgrading from v7.0+ or v7.1+ and you made changes to the <frevvo-home>/tomcat/conf/Catalina/localhost/insight.xml file, convert those parameters to properties and add them to the frevvo-config.properties file in your v10.0 installation. You can skip this step if you are upgrading from a version of  previous to v7.0
    5. Save the changes to the frevvo-config.properties file.
    6. Verify that you do NOT have files named frevvo.xml or insight.xml in the <frevvo-home>\tomcat\conf\catalina\localhost directory.
Info

Let's say you had context parameters to default the tenant login and customize the placeholder on the login screen in the frevvo.xml file of your previous installation. The context parameters in frevvo.xml would look like this:

Code Block
titlefrevvo.xml from your previous Live Forms installation
<Parameter name="frevvo.default.login.tenant.id" value="your_tenant_id" override="false"/>
<Parameter name="frevvo.login.username.placeholder" value="user@<your_tenant_name>" override="false"/>

The configuration properties follow a simple property name=value syntax. Follow these steps:

  1. Navigate to <frevvo-home>/tomcat/conf directory.
  2. Edit the frevvo-config.properties file.

  3. The Parameter name becomes the property name.
  4. Add an equal sign
  5. Add the value after the equal sign
  6. Repeat this for all custom parameters that were added to the frevvo.xml file of your previous installation

Restore the contents of the <frevvo-home>\data\solr directory from the previous installation directory backup that you made in the Prepare for Your Upgrade section to your latest version's <frevvo-home>\data directory. Then, follow the steps to start the Insight server BEFORE starting .

Info

You If you do not restore the Insight server index files located in the <frevvo-home>\data\solr directory, you can run the Refresh Searchable Fields process manually once the upgrade is complete. The process should be run after hours when your users are not using your forms/flows.

Windows:

  1. Open a command prompt. Navigate to <frevvo-home>\solr. Type bin\solr.cmd start to run the Insight server in the background, listening on the default port 8983.


  2. You will see this message:



    Warning

    If you close the Insight server (Solr) startup window, the server will stop running. Leave the window open or see these instructions to remove existing services and set up frevvo and the Insight Server to run as Windows services:

  3. Browse http://<your server:port>/ solr to verify the Insight server is running. The <server:port> default values are localhost:8983. Change localhost to the server name and 8983 to the port the Insight server is running on if they are different than the defaults. Do not include the angle brackets <>. You will see the Insight server (Solr) dashboard with the current status.

...

  1. Ensure that the scripts are executable: chmod 755 <frevvo-home>/tomcat/bin/*.sh
  2. Navigate to <frevvo-home>/solr/bin. Run this command to make the solr startup file executable:
    chmod +x solr
  3. Navigate back to the solr directory. 
    cd ..     
  4. Start the Insight server by typing: bin/solr start - this starts the Insight server in the background.
  5. Browse http:<your server:port>/solr to verify the Insight server is running. The <server:port> default values are localhost:8983. Change localhost to the server name and 8983 to the port the Insight server is running on if they are different than the defaults. Do not include the angle brackets <>. You will see the Insight server (Solr) dashboard with the current status.

...

  1. Login as a tenant admin
    1. Click on the Configuration Checklist link to verify that all configurations are complete.
    2. Click on the Reports link. Click on one of the Reports to verify that submission data is displayed.
  2. Login as a tenant designer user
    1. View and edit a form/flow
    2. Verify that your submissions are displayed when you click the Submissions and  Legacy submissions icons.
    3. Test forms/flows 

Login as the superuser admin.

  1. Verify that the Refresh Searchable Items process ran and completed successfully.

Troubleshooting

It is recommended that you do not change or delete the frevvo.users.schemaName property in the frevvo-config.properties file after the first startup of v10.0.x.  If the property is changed or deleted post migration you may see this error:

...

Warning

If you start before the Insight server, you will see this message when you browse the login URL. Follow these steps to start the servers in the correct order:

Navigate to your <frevvo-home> directory.

Run the stop-frevvo.bat or stop-frevvo.sh file depending on your Operating system to stop .

Open a command prompt. Navigate to <frevvo-home>\solr-6.6.2

Start the Insight server. Refer to Start the Insight Server above for the instructions.

Browse http://<your server:port>/solr to verify the Insight server is running. The <server:port> default values are localhost:8983. Change localhost to your server name and 8983 to the port the Insight server is running on if they are different from the defaults.Do not include the angle brackets <>.

Start .

Applying a Minor Patch Update

If you're applying a minor patch update, for example, applying patch 10.0.x to your installed v10.0.0 frevvo server, you can follow these simple steps instead of the more lengthy upgrade steps.  

Note

The latest major version and the compatible frevvo connectors are available from the frevvo Software Downloads Directory.

...

  1. Stop .

  2. Backup the current  server's installation directory so that you have a copy of all custom configuration parameters.

  3. Install the Upgraded Version.
    1. Download the latest v10.0.x software. The download is a zip file. Extract the contents to any folder of your choice. This folder will be referred to as <frevvo-home> (note that the zip already contains a top level frevvo folder).
    2. Install a JDBC Driver.
    3. If you increased Memory Settings in your previous installation, make those changes to the appropriate files in the new installation. Refer to Hardware and Memory Requirements for the details.
    4. Navigate to the server.xml file in the <frevvo-home>\tomcat\conf directory of your v10.0.x installation
  4. Configure the database and email.
  5. Install any 1063038468 that were installed in your previous version.
  6. Restore the contents of the <frevvo-home>\data\solr directory from the previous installation directory backup that you made in Step 2 to your latest version's <frevvo-home>\data directory. Then, start the Insight Server.

    Info

    If you do not restore the Insight server index files located in the <frevvo-home>\data\solr directory, you can run the Refresh Searchable Fields process manually once the upgrade is complete. The process should be run after hours when your users are not using your forms/flows.

  7. Start .