Upgrade Ambari Server
Follow the below steps to upgrade the Ambari version.
Stop Infra-solr Service
Stop the Infra-solr Service from Ambari-UI.

Stop Ambari Server and Agents
Stop Ambari Server
Take the backup of ambari-server configs.
/etc/ambari-server/conf/
ambari-server stopStop Agents
Stop Ambari-agent on every cluster nodes.
ambari-agent stopBack up Ambari Database
Take the Ambari-server backend database backup from the server host.
DB Backup Commands
mkdir /tmp/ambari-server_db_bckpmysqldump --databases ambari > /tmp/ambari-server_db_bckp/ambari_mysql_bckp.sqlThe upgraded version Ambari-2.7.8.2-3 supports only Python 3.11. Ensure that Python 3.11 is installed and configured on all the cluster nodes before proceeding with the upgrade.
Add Ambari Repo on Cluster Nodes
Back up the Old Ambari Repository
Run the following command:
mv /etc/yum.repos.d/ambari.repo /tmp/Retrieve the latest Ambari repository details from Accessing Acceldata Repositories and add it to all cluster nodes.
List the existing Ambari packages
On RHEL:
rpm -qa | grep ambariOn Ubuntu:
apt list ambari-*Example Output (if the current Ambari version is 2.7.9.2-1):
ambari-infra-solr-2.7.9.2-1.noarchambari-agent-2.7.9.2-1.x86_64ambari-server-2.7.9.2-1.x86_64ambari-infra-solr-client-2.7.9.2-1.noarchRemove existing Ambari rpm’s
From the Ambari Server node, remove the installed packages before upgrading:
On RHEL:
yum remove ambari-serverOn Ubuntu:
apt remove ambari-server- Adjust the package names based on the installed versions on each node.
- You can verify the installed packages before removing them using:
On RHEL:
rpm -qa | grep ambariOn Ubuntu:
apt list ambari-*Make sure the Amabri packages are not installed.
Install Ambari packages
If you are upgrading from any Python 2 based ODP version, make sure to perform the below additional steps to install Python 3.11 and its dependencies on all the hosts before proceeding with the next step.
For Ubuntu 20/22:
apt install software-properties-commonadd-apt-repository ppa:deadsnakes/ppaapt updateapt-get install python3.11 curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py/usr/bin/python3.11 get-pip.pypip3.11 install distro lxmlFor RHEL 8:
yum install python3.11 python3.11-pip pip3.11 install distro lxmlInstall the latest Ambari-server only on ambari-server node.
Server Node
On RHEL:
yum clean allyum install ambari-server -yOn Ubuntu:
apt cleanapt updateapt install ambari-server -yAmbari Server Configuration Files Restore
Restore the configuration files backed up at step4 (Backup taken in step 4).
Restore ambari.properties File
cp conf_12_02_25_16_52.save/ambari.properties conf/When prompted, enter 'y' to confirm.
cp: overwrite 'conf/ambari.properties'? yRestore passwd.dat File
cp /etc/ambari-server/conf_12_02_25_16_52.save/password.dat /etc/ambari-server/conf/password.datAmbari Server Schema Upgrade
Before upgrading, ensure a database backup has been taken (as mentioned in Step 6).
Run the Ambari Server upgrade command:
ambari-server upgrade -vIf you encounter the following error:
python version after sym links /usr/bin/python3.11Using python /usr/bin/python3.11Upgrading ambari-serverTraceback (most recent call last): File "/usr/sbin/ambari-server.py", line 28, in <module> from ambari_commons.exceptions import FatalException, NonFatalException File "/usr/lib/ambari-server/lib/ambari_commons/__init__.py", line 21, in <module> from ambari_commons.os_check import OSCheck, OSConst File "/usr/lib/ambari-server/lib/ambari_commons/os_check.py", line 25, in <module> import distroModuleNotFoundError: No module named 'distro'Set up the Distro Module
Install the required dependencies on the ambari-server and ambari-agent nodes.
On RHEL:
yum install python3.11-pip -ypip3.11 install distro lxmlOn Ubuntu:
apt-get updateapt-get install python3-pippip3 install distroRetry the Upgrade again
ambari-server upgrade -vResponse when prompted:
Ambari Server configured for MySQL. Confirm you have made a backup of the Ambari Server database [y/n] (n)? yEnter 'y' to confirm.After the successful completion, you must see the following message.
Ambari Server 'upgrade' completed successfully.Start Ambari-server
ambari-server startOnce started, verify that the Ambari UI is accessible using the same URL as before.
Verify Ambari Version
Verify the upgraded Ambari version in admin->about on top right corner in Ambari UI.

The Ambari version is upgraded successfully.
Upgrade Known Issues
During the migration, the existing GROUPS table in the Ambari database might cause conflicts due to its name. As a result, the Ambari UI might fail to start and throw the following error when attempting to log in.
Internal Exception: java.sql.SQLSyntaxErrorException: Table 'ambari.groups_info' doesn't existError Code: 1146Call: SELECT group_id, group_name, group_type, ldap_group, principal_id FROM groups_info WHERE (group_id = ?) bind => [1 parameter bound]Query: ReadObjectQuery(name="group" referenceClass=GroupEntity )To resolve this issue, rename the GROUPS table to groups_info in the Ambari backend database.
For MySQL
- Log into the MySQL server hosting the Ambari database.
mysql> use ambari;mysql> show tables lIKE 'groups';- The response is as follows.
+---------------------------+| Tables_in_ambari (groups) |+---------------------------+| groups |+---------------------------+- Verify the data.
mysql> select * from `groups`;- Rename the table
groupstogroups_infousing the following command.
mysql> RENAME TABLE `groups` TO groups_info;- Verify the same data as it was in groups table earlier. It must have the same data as it was earlier in groups table.
mysql> select * from groups_info;For Oracle
- Log into the Oracle server hosting the Ambari database.
- Verify the existing GROUPS table.
SELECT table_nameFROM user_tablesWHERE table_name LIKE '%GROUPS%';- The response is as follows.
TABLE_NAME--------------------------------------------------------------------------------------------------------------------------------GROUPS- Rename the table
groupstogroups_infousing the following command.
SQL> RENAME GROUPS TO GROUPS_INFO ;The successful rename operation results the output as TABLE Renamed.
- Verify the data once renaming is completed.
For Postgres
- Log into the Postgres server hosting the Ambari database.
- Verify the existing GROUPS table.
ambari=> \dt+- The response is as follows.
.. public | extensionlink | table | ambari | 0 bytes | public | groups | table | ambari | 16 kB | ..- Rename the table
groupstogroups_infousing the following command.
ambari=> ALTER TABLE groups RENAME TO groups_info;