Updating/Upgrading AWX-RPM

Updating/Upgrading AWX-RPM

First install awx-rpm-manage

dnf install awx-rpm-manage

Updating same release of AWX-RPM:

awx-rpm-manage update

Upgrading AWX-RPM:

awx-rpm-manage upgrade

Upgrading from postgreSQL 13 to 15 (required from AWX-RPM 24.6.1):

as root:

systemctl stop postgresql.service

dnf -y module install postgresql:15

dnf install postgresql-upgrade

postgresql-setup --upgrade

vi /var/lib/pgsql/data/pg_hba.conf

Now change the line:

host all all 127.0.0.1/32 ident

into:

host all all 127.0.0.1/32 md5

then:

systemctl start postgresql.service

su postgres -c 'vacuumdb --all --analyze-in-stages'