Versions Compared

Key

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

Overview

  • The following steps will guide you to extract and install the Zuken DS-E3 library .jar files for use with of Syndeia Cloud (SC).

Steps

  1. Collect Zuken DS-E3 lib files & review configuration file:

    1. Libraries - available with the DS-E3 Server, e.g. C:\Zuken\DS-E3\Engine\ndslib\client\

      1. nds_ap.jar

      2. nds_light.jar

      3. nds_sorb.jar

      4. sif4j-nop-17.25.jar

    2. Properties file - available with the DS-E3 Server Engine , e.g. C:\Zuken\DS-E3\Engine\ndsengine\conf\

      1. ndsapp.properties : (info) this file shows the values you will want to use when configuring the repository in the SC web-dashboard.

  2. Copy the Zuken DS-E3 libs: Copy the Zuken DS-E3 .jar files to new dse3 sub-directory under lib of the microservice on the SC server, ex:

    1. On Linux 🐧 ,

      1. For DS-E3, copy the .jar files to, ex: /opt/icx/syndeia-cloud-current/dse3-impl-3.6/lib/dse3 and ensure the user & group ownership of those files is set to syndeia-cloud:syndeia-cloud by running the below :

        Code Block
        languagebash
        SC_HOME=/opt/icx/syndeia-cloud-current/
        SC_snapshot_version=3.6
        sudo -u syndeia-cloud mkdir "${SC_HOME}"/dse3-impl-"${SC_snapshot_version}"/lib/dse3
        sudo cp ~/lib_DSE3/nds_*.jar "${SC_HOME}"/dse3-impl-"${SC_snapshot_version}"/lib/dse3/.
        sudo chown syndeia-cloud:syndeia-cloud "${SC_HOME}"/dse3-impl-"${SC_snapshot_version}"/lib/dse3/*.jar
    2. On Windows 🪟 ,

      1. For DS-E3, copy the .jar files to, ex: c:\cygwin64\opt\icx\syndeia-cloud-current\dse3-impl-3.6\lib\dse3

  3. Restart the respective services, ie:

    1. On Linux 🐧 , sudo systemctl restart sc-dse3

    2. On Windows 🪟 , use services.msc (Windows Services Manager) or from CMD.EXE run:

      Code Block
      languagejava
      sc.exe stop sc-dse3
      sc.exe start sc-dse3