Info |
---|
Applies to Harmony SMP starting from version 2.0.0. Before completing the steps described in this article, upgrade the Harmony Access Point SMP to version 2.0.0 or later. |
...
Install OpenJDK 11.
Code Block sudo apt install openjdk-11-jre-headless
Update
JAVA_HOME
in/opt/harmony-smp/bin/setenv.sh
to point to OpenJDK 11.Code Block #!/bin/sh export JAVA_OPTS= ... export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64
Restart the SMP.
Code Block sudo systemctl restart harmony-smp
Test to see that everything works.
in In case of any of problems, revert step 2.
Remove OpenJDK 8.
Code Block sudo apt remove openjdk-8-jre-headless
...