User Community Service Desk Downloads
If you can't find the product or version you're looking for, visit support.ataccama.com/downloads

RDM 14.4.0 Upgrade Notes

Java 17 upgrade

Upgrade Java to version 17 on all servers running ONE components (this is typically app, sometimes additionally mdm depending on your architecture).

See the following commands as a reference depending on your OS distribution.

Ubuntu
### Add GPG key
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 3B04D753C9050D9A5D343F39843C48A565F8F04B

### Add APT repository
sudo add-apt-repository 'deb https://packages.adoptium.net/artifactory/deb focal main'

### Install temurin-17-jdk
sudo apt install temurin-17-jdk

### Set the default (use keys to select Java 17)
sudo update-alternatives --config java
RHEL 8 or CentOS 8
sudo bash -c 'cat <<EOF > /etc/yum.repos.d/adoptium.repo
[Adoptium]
name=Adoptium
baseurl=https://packages.adoptium.net/artifactory/rpm/centos/8/$(uname -m)
enabled=1
gpgcheck=1
gpgkey=https://packages.adoptium.net/artifactory/api/gpg/key/public
EOF'

sudo yum update ### Update if you haven't already
sudo yum install temurin-17-jdk

### Set the default (use keys to select Java 17)
sudo update-alternatives --config java

Toggle switch for Boolean values

In RDM Web Application, attributes of Boolean type are now set using a toggle switch. This change is automatically applied after upgrading, with no further action required.

If you prefer to keep using the dropdown menu instead, you can revert this by setting the domain attribute selection in your RDM logical model to DROPDOWN.

For more information, see Domains, section Domain attributes.

Was this page useful?