Infrastructure upgrade
Upgrading infrastructure components individually might be a good choice to minimize risk, increase stability, and enhance security. Additionally, in the event of a bug occurring in some running version of services (JDK/Tomcat/Cassandra, etc.), upgrading to a higher version may be recommended to fix the bug. Hence, a patch upgrade may be required to upgrade individual services. The steps for upgrading each service are given in the document below.
OpenIAM-JDK patches
- Check OpenIAM status and then stop OpenIAM services.
openiam-cli statusopeniam-cli stop
- Download the required JDK at the following link.
wget https://builds.openlogic.com/downloadJDK/openlogic-openjdk-jre/11.0.25+9/openlogic-openjdk-jre-11.0.25+9-linux-x64.tar.gz
- Extract the downloaded JDK using a
tar
command.
tar -xvf openlogic-openjdk-jre-11.0.25+9-linux-x64.tar.gz
- Backup the existing JDK and replace it with the following commands.
sudo mv /usr/local/openiam/jdk /root/jdk_openiam_backupsudo mv /root/openlogic-openjdk-jre-11.0.25+9-linux-x64 /usr/local/openiam/jdk
- Restore security certificates.
cp /root/jdk_openiam_backup/lib/security/cacerts /usr/local/openiam/jdk/lib/security/
- Change ownership as follows.
chown -R openiam:openiam /usr/local/openiam/jdk
- Restart OpenIAM services
openiam-cli startopeniam-cli status
Tomcat patches
To update Tomcat, start with downloading the latest Tomcat version, as shown below, and extracting the downloaded archive.
wget --no-check-certificate https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.98/bin/apache-tomcat-9.0.98.tar.gztar -xvf apache-tomcat-9.0.98.tar.gz
An essential step before updating any component is checking OpenIAM status and stopping it.
openiam-cli statusopeniam-cli stop
- Backup the current Tomcat instance and replace it with the new one, as follows.
sudo mv /usr/local/openiam/ui /root/ui-backupsudo mv /root/apache-tomcat-9.0.98 /usr/local/openiam/ui
- Restore web applications.
cp -r /root/ui-backup/webapps/ /usr/local/openiam/ui
- Change ownership.
chown -R openiam:openiam /usr/local/openiam/ui/
- Finally, restart OpenIAM UI services.
openiam-cli startopeniam log openiam-ui
- Check service logs and for permission-related issues, restore default settings as shown below.
journalctl -u openiam-uils -Z /usr/local/openiam/ui/bin/startup.shrestorecon -v /usr/local/openiam/ui/bin/startup.shls -Z /usr/local/openiam/ui/bin/startup.sh
- Start the OpenIAM UI service.
systemctl start openiam-ui
Elasticsearch JDK patch (JDK-21.0.4 LTS)
Start by verifying the current Elasticsearch JDK version, as shown below.
cat /usr/share/elasticsearch/jdk/release/usr/share/elasticsearch/bin/elasticsearch --version/usr/share/elasticsearch/jdk/bin/java -version
- Check Elasticsearch service status by running the following.
systemctl status elasticsearch -l --no-pagercat /usr/lib/systemd/system/elasticsearch.service
- Stop OpenIAM and Elasticsearch.
openiam-cli statusopeniam-cli stopservice elasticsearch stop
- Download the new JDK from the URL given below and install it.
wget https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4%2B7/OpenJDK21U-jdk_x64_linux_hotspot_21.0.4_7.tar.gztar -xvf OpenJDK21U-jdk_x64_linux_hotspot_21.0.4_7.tar.gzsudo mv /usr/share/elasticsearch/jdk /root/jdk_backupsudo mv /root/jdk-21.0.4+7 /usr/share/elasticsearch/jdk
- Restart Elasticsearch and check logs.
service elasticsearch starttail -n 300 /var/log/elasticsearch/elasticsearch.log
- Verify Elasticsearch and JDK versions once again.
cat /usr/share/elasticsearch/jdk/release/usr/share/elasticsearch/bin/elasticsearch --version/usr/share/elasticsearch/jdk/bin/java -version
- Finally, restart OpenIAM services with the commands below.
openiam-cli startopeniam-cli status
Flyway JRE patch
- Verify JRE version across all nodes.
cluster openiam-cli status/usr/local/openiam/flyway/jre/bin/java --version
- Run the following commands for all three HA nodes.
wget https://builds.openlogic.com/downloadJDK/openlogic-openjdk-jre/11.0.25+9/openlogic-openjdk-jre-11.0.25+9-linux-x64.tar.gztar -xvf openlogic-openjdk-jre-11.0.25+9-linux-x64.tar.gzsudo mv /usr/local/openiam/flyway/jre /root/flyway_jre_backupsudo mv /root/openlogic-openjdk-jre-11.0.25+9-linux-x64 /usr/local/openiam/flyway/jrechown -R openiam:openiam /usr/local/openiam/flyway/jre
- Verify the update.
cluster openiam-cli status/usr/local/openiam/flyway/jre/bin/java --version
Cassandra patch
- It is important to create a backup directory for existing configuration. Hence, create the following directories in
/root
to store backups of the existing configuration.
mkdir -p /root/backup-cass/etc-cassmkdir -p /root/backup-cass/var-lib-cassCopy the existing configuration and data files:cp -r /etc/cassandra /root/backup-cass/etc-casscp -r /var/lib/cassandra /root/backup-cass/var-lib-cass
- Verify current version. Run the following commands to check the current version of Cassandra.
nodetool versioncassandra -v
Example output should look as follows.
ReleaseVersion: 4.0.124.0.12
- Take a snapshot of all Keyspaces with the command below ...
nodetool snapshot
... and verify the snapshot directory.
ls /var/lib/cassandra/data/system/size_estimates-*/snapshots
The output should look as follows.
1737524024387
- Download new RPM packages from the link below.
wget https://apache.jfrog.io/artifactory/cassandra-rpm/40x/cassandra-tools-4.0.15-1.noarch.rpmwget https://apache.jfrog.io/artifactory/cassandra-rpm/40x/cassandra-4.0.15-1.noarch.rpm
- Check and stop services.
openiam-cli statusopeniam-cli stop
- Verify and stop Cassandra and JanusGraph services.
systemctl status cassandrasystemctl status janusgraphsystemctl stop janusgraphsystemctl stop cassandra
- Check installed Cassandra packages.
rpm -qa | grep cass
The output should look as follows.
cassandra-tools-4.0.12-1.noarchcassandra-4.0.12-1.noarch
- Remove old RPM packages.
rpm -e cassandra-tools-4.0.12-1.noarchrpm -e cassandra-4.0.12-1.noarch
Verify removal with the following commands.
rpm -qa | grep cass
Clear JanusGraph data.
rm -rf /var/lib/cassandra/data/janusgraph/*
- Install new Cassandra packages.
rpm -ivh cassandra-4.0.15-1.noarch.rpmrpm -ivh cassandra-tools-4.0.15-1.noarch.rpm
Verify the installation.
rpm -qa | grep cass
The output of the above command look as follows.
cassandra-4.0.15-1.noarchcassandra-tools-4.0.15-1.noarch
- Restore configuration
cp /root/backup-cass/etc-cass/cassandra/default.conf/cassandra.yaml /etc/cassandra/default.conf/
- Start Cassandra and JanusGraph services with the commands below.
systemctl start cassandrasystemctl start janusgraph
Check service status:
systemctl status cassandrasystemctl status janusgraph
- Verify the upgrade with the below commands.
cassandra -vnodetool version
Example output of this commands looks as shown below.
ReleaseVersion: 4.0.154.0.15
- Start OpenIAM Services
openiam-cli startopeniam-cli status
- For OpenIAM UI login issues after Cassandra upgrade please rebuild the graph.
curl http://localhost:9080/openiam-esb/authmanager/rebuildGraph
Use the command above to rebuild the graph, if there are any login issues in OpenIAM UI.