Versions Compared

Key

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

This section lists the prerequisites and explains how to apply the patch on Windows-based and Linux-based operating systems.

...

  • Read and Write permissions on all sub-folders and files of ../AdeptiaSuite-<Version>.
  • Stopped Kernel and WebRunner.
  • Stopped process flows that are in Running or Queued state.
  • Deactivated any running Mail Event.
  • Taken the backup of a backend database. 
    • In case, the embedded database is used as the backend database, follow the below steps to take the backup:
      1. Stop Kernel and WebRunner.   
      2. Go to <AdeptiaInstallFolder>/AdeptiaServer/ServerKernel folder.
      3. Copy the embeddedDB folder and keep it into a separate folder.In case you are using HSQL database, copy the following files (located at .../<AdeptiaInstallFolder>/AdeptiaServer/ServerKernel/embeddedDb/db) and keep then in a seperate folder:
        • indigo.script

        • logs.script

        • abpmquartz.script

    • In case, any other database is used as the backend database, you need to follow the backup instructions given by that Database Server. To know, which database is used as the back end database, refer to Appendix A: Identify Backend Database.  
  • AnchorbackupbackupTaken the backup of the following files (located at .../<AdeptiaInstallFolder>/AdeptiaServer/ServerKernel/embeddedDb/db) in case you are using HSQL database:
  • indigo.script

  • logs.script

  • abpmquartz.script
  • Taken the backup of the following files:
    • web.xml file located at .../<AdeptiaInstallFolder>/AdeptiaServer/ServerKernel/web/WEB-INF.
    • jetty.xml file located at .../<AdeptiaInstallFolder>/AdeptiaServer/ServerKernel/etc/jetty.

    • webdefault.xml file located at .../<AdeptiaInstallFolder>/AdeptiaServer/ServerKernel/web/WEB-INF.
    • launcher.properties file located at  ...<AdeptiaInstallFolder>\AdeptiaServer\ServerKernel\etc.
  • Ensure that you have followed the Prerequisites' instructions given on the Installing Adeptia Suite page.

...

Changes in web.xml.

  1. Copy the web.xml file from patch location, and paste it at .../<AdeptiaInstallFolder>/AdeptiaServer/ServerKernel/web/WEB-INF location replacing the existing one.
  2. Open the copied file and replicate the manual changes that you may have done in your previous web.xml file (that you had saved as a backup).
  3. Save the file.

Changes in jetty.xml

  1. Copy the jetty.xml file from patch location, and paste it at .../<AdeptiaInstallFolder>/AdeptiaServer/ServerKernel/etc/jetty location replacing the existing one.
  2. Open the copied file and replicate the manual changes that you may have done in your previous jetty.xml file (that you had saved as a backup).
  3. Save the file.

Changes in webdefault.xml

  1. Copy the webdefault.xml file from patch location, and paste it at .../<AdeptiaInstallFolder>/AdeptiaServer/ServerKernel/web/WEB-INF location replacing the existing one.
  2. Open the copied file and replicate the manual changes that you may have done in your previous webdefault.xml file (that you had saved as a backup).
  3. Save the file.

Changes in launcher.properties

  1. Copy the launcher.properties_Server file from patch location, and paste it at  ...<AdeptiaInstallFolder>\AdeptiaServer\ServerKernel\etc location.
  2. Rename the copied launcher.properties_Server file to launcher.properties.
  3. Open the copied file and replicate the manual changes that you may have done in your previous launcher.properties file (that you had saved as a backup).
  4. Save the file.

Changes in server-configure.properties

In case you are using SQL server database, you need to add the parameters encrypt=true and trustServerCertificate=true to the JDBC URL for backend and log database in the relevant sections of server-configure.properties file located at .../<AdeptiaInstallFolder>/AdeptiaServer/ServerKernel/etc. The JDBC URL for backend database can be found under "Database Configuration" section and that for the log database can be found under "Database Appender" section. Examples for both backend and log db JDBC URLs is given below:

Backend db JDBC URL:

jdbc:sqlserver://<IP address>:<Port>;DataBaseName=<Name of backend db>;encrypt=true;trustServerCertificate=true; 

Log db JDBC URL:

jdbc:sqlserver://<IP address>:<Port>;DataBaseName=<Name of log db>;enrypt=true;trustServerCertificate=true; 

Changes in quartz.properties

In case you are using SQL server database, you need to add the parameters encrypt=true and trustServerCertificate=true to the JDBC URL for backend database given for the property org.quartz.dataSource.aBPM.URL in quartz.properties file located at .../<AdeptiaInstallFolder>/AdeptiaServer/ServerKernel/etc. Example for backend db JDBC URL is given below:

jdbc:sqlserver://<IP address>:<Port>;DataBaseName=<Name of backend db>;encrypt=true;trustServerCertificate=true;

...