Warning | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Forms/flows created on v5.2 patch 1+ or v5.3+ will not require further attention post migration. HoweverBefore you begin the migration process, there are a few migration items that you need to consider. Please Please read and understand the Planning for v6.2 which may require your action before you begin your upgrade. Please follow the instructions on this page, to perform your upgrade. Click on the link for the section that applies.
| Current Live Forms Release | v5.3 |
Your Live Forms Version | Recommended Upgrade Path to v6.2 | |||
---|---|---|---|---|
5.0 revision (22491) | 6 | Upgrade directly to v6.2 | ||
5.1.x 5 | Upgrade to v5.3 | 6 | .8 then upgrade to v6.2 | |
5. 2patch2 patch 8/9 | 6 | Upgrade directly to v6.2 | ||
5.3.8 | 6 | Upgrade directly to v6.2 | ||
6.1 | 6.2 .x | Upgrade directly to v6.2 |
Please follow the instructions on this page, to perform your upgrade. Click on the link for the section(s) that apply.
Table of Contents | ||
---|---|---|
|
...
Migrating from HSQLDB
does not support the use of HSQLDB for use beyond demo/trials of the Live Forms 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 use the automated migration scripts to upgrade to later versions of Live Forms.
Upgrading from v4.x - 4.1.6
...
.
...
Upgrading from v4.1.7+
...
Upgrading from
...
v5.
...
Upgrading from v5.1.x
Warning |
---|
You will need to upgrade to version 5.3 before migrating to version 6. Refer to Upgrading from v5.1.x in the v5.3 documentation for the details. When the upgrade to v5.3 is complete, return to this page and continue with the Upgrading from 5.0 (r22491) or v5.2 patch1patch 8/9+ or v5.3+.8 or 6.1 section below. |
...
Upgrading from 5.0 (r22491) or v5.2 patch 8/9+ or v5.3.8 or 6.1
...
.
...
1
...
Please read the following upgrade steps prior to starting the migration.
- Please read and understand the the Migration Considerations which which may require your action before beginning.
- Backup the v5 server's forms and users databases from your current installation.
- Backup the v5 current server's installation directory so that you have a copy of all custom configuration parameters.
- Stop the v5 the server using stop-frevvo.[bat,sh] or through the Computer Management Services console if is running as a window's service.
- Install a fresh v6.2 server:
- Download the latest v6.1 2 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).
- Navigate to <frevvo-home>\tomcat\conf\catalina\localhost\frevvo.xml in the v6.2 directory structure.
Point v6.2 frevvo database to your current frevvo database. Remember to add the sendStringParametersAsUnicode property with a value of false to your database connection URL if it is not already there.
Note The execution of SQL scripts is no longer required. All database initialization and/or upgrade will be done by frevvo.war as part of the v6.2 startup.
- If you are upgrading from v6.1 startup.
you can skip steps 7a - 7b. Go directly to step 8. - If you are upgrading from a version prior to v6.1, then you MUST perform these steps:
Warning |
---|
|
If you are using the tomcat servlet, follow the steps below to configure the v6.
12 <frevvo-home>\tomcat\conf\catalina\localhost\frevvo.xml file for migration.
- Navigate to <frevvo-home>\tomcat\conf\catalina\localhost\frevvo.xml in the v6.1 directory structure. Point v6.1 frevvo database to your v5.2 patch 1+ or v5.3+ frevvo database. An example for MySQL is shown below:
- For SQL server database migration: Uncomment " <Parameter name="frevvo.users.schemaName" value="users.dbo" override="false"/>" in frevvo.xml and comment out "<Parameter name="frevvo.users.schemaName" value="users" override="false"/>".
- Set the value of frevvo.users.schemaName in the v6.
1 frevvo- 2 frevvo.xml file to the name of the users database of the version you are migrating from. If you didn't change the name of the users schema in the version you are migrating from, then you can leave it as the default, users. Make sure you append .dbo to the users schema name if you are using an SQL server database.
During the upgrade
from 5.x to 6.1, Live Forms copies the data in the old users schema into the corresponding new tables in the frevvo schema. The users and frevvo schemas are
being consolidated as part of the 6.1 release. In order to do this, consolidated in this release. Live Forms uses the frevvo database user to select the data from the old users schema. Therefore, the frevvo database user must have select access to all of the tables in the old user. In case your database is not already configured for this, you must grant select permission to the frevvo user on these tables BEFORE upgrading.
Below is an example of the queries needed to grant select permission on the users schema to the frevvo user for the Oracle database:
Code Block GRANT select ON users.resources TO frevvo; GRANT select ON users.roles TO frevvo; GRANT select ON users.spaces TO frevvo; GRANT select ON users.tenantcategories TO frevvo; GRANT select ON users.tenants TO frevvo; GRANT select ON users.users TO frevvo; GRANT select ON users.usersroles TO frevvo; GRANT select ON users.tenantroles TO frevvo;
If you are using a database other than Oracle, similar statements need to be executed. Please consult your database documentation for the correct syntax.
Info The frevvo db user id requires the database level privileges listed below on first startup. If your database is not set up for this already, privileges will be needed for the following actions:
- Create Table
- Alter Table
- Drop Table
- Create Index
- Create Sequence (Oracle)
- Create Trigger
Customers upgrading to v6.2 from a Live Forms version prior to v6.1, using LDAP, must copy their LDAP config parameters from the frevvo.xml file of the version you are migrating from to the v6.2 version frevvo.xml BEFORE starting the v6.2 server for the first time. Live Forms will then migrate the config to the tenant level on startup. LDAP parameters can then be edited in the v6.2 UI.
warning
5.3 customers using LDAP must copy their LDAP config parameters from the frevvo.xml file of the version you are migrating from to the v6.1 version frevvo.xml BEFORE starting the v6.1 server for the first time. will then migrate the config to the tenant level on startup. LDAP parameters can then be edited in the v6.1 UI.
8.
...
If you are using the JBOSS container, make the following additions to the configuration files:
JBOSS container : Quartz parameter has to be added to frevvo-config.properties file. e.g in case of MSSQL database, add the following in this file:
"org.quartz.jobStore.driverDelegateClass=org.quartz.impl.jdbcjobstore.MSSQLDelegate"
JBOSS + SQL server : "SelectMethod=cursor" has to be added to the connection url in frevvo-ds.xml file as follows :
"<connection-url>jdbc:sqlserver://localhost:1433;databaseName=frevvo;SelectMethod=cursor;</connection-url>"
The Quartz parameter is not required for starting the frevvo server if you are using WEBLOGIC.
Configure
9. Configure the new installation
- If you made changes to the following files in
...
- your previous installation, you will need to make the same changes in the new v6.2 configuration files.
- <frevvo-home>/tomcat/conf/server.xml
- <frevvo-home>/tomcat/conf/Catalina/localhost/frevvo.xml
- We recommend that any changes that were made to the web.xml file be moved to frevvo.xml instead
- The three files mentioned above include:
...
- Database Configuration
- Email Configuration
- Proxy Server Configuration
- LDAP Configuration, if applicable
- Refer to Installation Tasks for more information.
11 10. Start the v6.1 server.
Info |
---|
The users database, required for previous versions of , is no longer needed. The 6.1 automigration creates a new frevvo database that contains all the tables from frevvo and users databases of the the previous version along with any new ones. |
12. Upgrade all users and their forms to v6.1. This step is VERY IMPORTANT. Follow these instructions:
- After you have started the v6.1 server, login as admin@d user.
- Browse this URL in the same browser: http://localhost:8082/frevvo/web/upgradeUsers?force=true. Replace localhost:8082 in this URL with your frevvo server host :port
2 server.
Things to Check:
- Login as a tenant admin
- Click on the Configuration Checklist link to verify that all configurations are complete
- Login as a tenant designer user
- View and edit a form/flow
- View submissions that existed before
- Test forms/flows
Troubleshooting:
It is recommended that you do not change or delete the frevvo.users.schemaName property in frevvo.xml after the first startup of v6.12. If the property is changed or deleted post migration you may see this error:
...
Applying a Minor Patch Update
If you're applying a minor patch update, for example, applying patch 6.12.1 to your installed v6.1 2 Live Forms server, you can follow these simple steps instead of the more lengthy upgrade steps. You can download the latest build from frevvo download
Note |
---|
The latest major version and latest connector versions are available on the public Software Downloads page. |
Follow these steps:
- Unzip the downloaded build zipfile to a temp directory.
Copy the \temp\frevvo\tomcat\webapps\frevvo.war file.
Stop .
Replace the frevvo.war file in your installation with the one copied above.
If you made any change in the web.xml file of your frevvo.war, then you will have to make those changes again in the web.xml file of the new frevvo.war. The steps to do this are explained here or you can just copy the old web.xml and replace the new one with it.
Delete everything inside \frevvo\tomcat\temp directory of your installation.
Start .
...
If you do not find your Confluence server version in the Confluence Add-on Release Notes compatibility matrix, please contact support at frevvo support@frevvo.com.
Database Connector
If you are using the database connector, you must reinstall and configure it again for the v6.1 2 installation.