You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cd /opt/postgres
docker exec -it postgres pg_dumpall -U awx > dump.sql
docker-compose down
mv data data-v13-backup
mkdir data
# In 'docker-compose.yml' config change postgres image tag to '15'
docker-compose up -d
cat dump.sql | docker exec -it postgres pgsql -U awx
docker exec -ti postgres psql -U awx
# Change awx user password to trigger new host_auth_method. Can be same password as before.
awx=# \password
Enter new password for user "awx":
Enter it again:
awx=# exit# Set 'awx_pg_is_on_supported_version' to 'true' and continue AWX upgrade as usual