I figured out how to acess the PostgreSQL database of my AWX project and i want to know in which scheme do the number of failed hosts or the project in the dashboard go to?
Thank you
Hi Ahmed,
You can access postgres database in AWX by using below steps:
-
To access postgres databse:
docker exec -it postgres /bin/bash -
Login with user ‘awx’
psql -U awx
- Below step will show you list of database available:
\list
- Connect with database ‘awx’
#\c awx - Fetch list of all tables in databse:
#\d - Search in hosts related table
Regards