Versions Compared

Key

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

Table of Contents

Download OpenSpecimen

...

Prerequisites

  1. Database: MySQL 5.7/ 8.0 or Oracle 11g/12c
  2. Java 8 JDK and Set JAVA_HOME is set.(Refer to this section for Java 17 changes)
  3. Tomcat 9 and its service
  4. MySQL prerequisites

Please visit the respective download centers and download the latest version available for your operating system:

Note: Make sure MySQL prerequisites are configured correctly before moving on to the next steps.

...


MySQLOracle
Driver class namecom.mysql.jdbc.Driver

oracle.jdbc.OracleDriver

DB URL jdbc:mysql://<db_host>:<db_port>/<db_name>jdbc:oracle:thin:@<db_host>:<db_port>:<dbname>

Add below XML fragment below  <Resource> tag in $TOMCAT_HOME/conf/context.xml

Code Block
languagexml
<Environment
  name="config/openspecimen"
  value="$TOMCAT_DIR/conf/openspecimen.properties"
  type="java.lang.String"/>

...

FieldDescriptionValues
app.name

This field is useful for deploying multiple OpenSpecimen instances on the same Tomcat server. E.g. You can use "os-test" and "os-prod".

Typically this is "openspecimen".
tomcat.dirThe absolute path to the Tomcat directory
app.data_dir

Absolute path to OpenSpecimen data directory.

Best practice:

Create a folder in parallel to 'tomcat.dir' with the name "openspecimen/data"

app.log_conf

Folder where the OpenSpecimen logs should be created

If left empty logs are created in "app.data_dir/logs"

datasource.jndiName of datasource configured in "context.xml"Usually, it is "jdbc/openspecimen".
datasource.type

"fresh": If your database schema is created by OpenSpecimen from scratch.

"Upgrade": if your database schema is upgraded from a caTissue database.

Note: The name is a bit misleading, we will fix this in v5.2.

"fresh" or "upgrade"
database.typeMySQL or Oracle

"mysql" or "oracle"

plugin.dir

Absolute path to the plugin directory.

Best practice:

Create a folder in parallel to 'tomcat.dir' with the name "openspecimen/plugins"

Install / Upgrade

For Upgrading installing new or upgrading OpenSpecimen from versions after v5.0 or installing OpenSpecimen for the first time. Use the below command.

Before running the installer.

...

previous versions use the below command:

Operating systemCommand
Linux./install.sh <absolute_path_to_openspecimen.properties>
Windows./install.bat <absolute_path_to_openspecimen.properties>

Example : ./install.sh /usr/local/openspecimen/tomcat-as/conf/openspecimen.properties

Note: Notes for upgrade:

  1. Download the build zip using the details provided by OpenSpecimen support team. 
  2. Once the build zip is extracted, copy the paid plugins (if any) under the new_plugins directory.
  3. The installer scripts automatically copies the new WAR and plugin and

...

  1. take the backup of existing WAR and plugins into $os_data/old_builds directory.
  2. Stop the Tomcat if running
  3. Take the backup of the custom plugins if any
  4. Take the backup of the database before upgrade

Starting/Stopping OpenSpecimen

...

  1. Email Configuration
  2. Locale Configuration

  3. LDAP Configuration

Java 17 changes (Linux and Ubuntu)

OpenSpecimen version 10.1 onwards.

  1. Install Java 17 using the below command.

Ubuntusudo apt install openjdk-17-jdk openjdk-17-jre
RedHatsudo dnf install java-17-openjdk-devel java-17-openjdk

2. Change the existing JAVA_HOME directory path in .bashrc file and point to the Java 17 directory.

3. Check the Java version using the below command.

              # java -version

4. Edit the $Tomcat_Dir/bin/setenv.sh file and remove the below lines.

             "-XX:PermSize=64m -XX:MaxPermSize=512m"

5. Add the below-mentioned Java specific startup parameters required by Tomcat in $Tomcat_Dir/bin/catalina.sh file.

             JDK_JAVA_OPTIONS="$JDK_JAVA_OPTIONS --add-opens=java.base/java.net=ALL-UNNAMED

6. Deploy the OpenSpecimen build.


Java 17 changes (Windows)

OpenSpecimen version 10.1 onwards.

  1. Rename the existing Java folder under C drive C:\Program Files\Java to C:\Program Files\Java_bkp
  2. Uninstall the old java from the control Panel
  3. Download and install the Java 17 from here.
  4. Change the Java environment variables and insert the new path to the JDK folder.
  5. Check the Java version using below command once the installation is complete.
                 # java -version
  6. Edit the service.bat file inside $Tomcat_Home/bin/service.bat location.
  7. Find the following string "--JvmOptions9" in the service.bat file and add the below line.
                --add-opens=java.base/java.lang=ALL-UNNAMED#

    Image Added
  8. Edit the catalina.sh file inside $Tomcat_Home/bin/catalina.bat location.
  9. Add the below parameter under the "JDK_JAVA_OPTIONS" options.
                JDK_JAVA_OPTIONS="$JDK_JAVA_OPTIONS --add-opens=java.base/java.net=ALL-UNNAMED"
  10. Deploy the OpenSpecimen build.