Difference between revisions of "Upgrading to Version 11.4"
(→IMPORTANT) |
(→IMPORTANT) |
||
Line 1: | Line 1: | ||
[[Category:How_To V11]] | [[Category:How_To V11]] | ||
=IMPORTANT= | =IMPORTANT= | ||
− | + | From version 11.4.0 onwards, the Fusion Metadata Registry will no longer ship with a MySQL connector (the reason is due to licensing issues). FMR can still be used with a MySQL database, but you will need to manually supply the MySQL dependency JAR file. If you were using MySQL with an earlier version of FMR, then you will need to make this change in order to successfully start your Tomcat after installing Version 11.4 or later. | |
==Upgrading from Version 10 or earlier== | ==Upgrading from Version 10 or earlier== |
Revision as of 07:21, 4 October 2022
Contents
IMPORTANT
From version 11.4.0 onwards, the Fusion Metadata Registry will no longer ship with a MySQL connector (the reason is due to licensing issues). FMR can still be used with a MySQL database, but you will need to manually supply the MySQL dependency JAR file. If you were using MySQL with an earlier version of FMR, then you will need to make this change in order to successfully start your Tomcat after installing Version 11.4 or later.
Upgrading from Version 10 or earlier
- Folow the Backing Up instructions in this article Upgrading from Version 10 to Version 11.
- Next, follow the instructions below.
Preparing to run Version 11.4 or later
FMR supports mySql however the 'jar' file is not included as part of the software distribution so must be obtained and installed seperately prior to starting the application.
Obtain the mySql connector
The file required can be obtained from the MySQL Developer Zone. At the time of writing this article link will take you to the appropriate page.
From the dropdown list, select 'Platform Independent' as shown in the image below and then select which type of compressed file you would like to downlaod.
These instructions are based on downloading the Zip file.
If you are prompted as shown below, there is no need to Login or Sign Up, simply click on 'No thanks' to download the relevant files.
Unzip the files
Once the zip file has been downloaded you need to unzip it in the usual way to a folder which will always be available to the application.
Extracting the files:
In this example, I have downloaded the files to a sub folder on my C drive as shown below.
Make a note of the full location path (including the file name) for the 'jar' file, in this example: 'C:\SQL_Connector\mysql-connector-java-8.0.30\mysql-connector-java-8.0.30.jar'.
Change setenv.bat
Lastly, you need to edit the setenv.bat file so that the Tomcat 'knows' the location of the MySQL jar file.
Setenv.bat is located in the Tomcat's bin folder and it can easily be edited using Notepad.
A line need to be added, in the example above it would be this:
set CLASSPATH=C:\SQL_Connector\mysql-connector-java-8.0.30\mysql-connector-java-8.0.30.jar
To the command set CLASSPATH =, the location of the jar file AND the name of the file is included.
You can now start the Tomcat and once started, can use FMR.