My playbook job fails with the error “Server not found in Kerberos database” when executed against a Windows server with Kerberos authentication. TASK [Ping host] ****************************************************************************************************************************************************************************************** fatal: [host01.mydomain.com]: UNREACHABLE! => {"changed": false, "msg": "kerberos: authGSSClientStep() failed: (('Unspecified GSS failure. Minor code may provide more information', 851968), ('Server not found in Kerberos database', -1765328377))", "unreachable": true} …
Category: Ansible
How to test playbook on Ansible Tower nodes from the command line
Login to the Ansible Tower node and change to awx user. # sudo su -awx If you use a custom virtual environment in Ansible Tower, source it as follows. source /var/lib/awx/venv/ansible/bin/activate For Ansible or your custom virtual environment, export the Python path used during Ansible Tower task executions. On the CentOS 7 Server, run as …
PostgreSQL versions supported by Ansible Tower and Ansible Automation Platform?
On docs.ansible.com, you can find the prerequisites for each Red Hat Ansible Tower and Red Hat Ansible Automation Platform version. Specific Red Hat Ansible Tower and Red Hat Ansible Automation Platform version requirements can be viewed by adjusting the versions in the documents section at the top left of the URL above. Ansible Tower/Controller Version …
How to install and use Ansible collections from Ansible Galaxy having no internet access?
Download the relevant collections’ tarballs from Automation Hub or Ansible Galaxy on a system connected to the internet. You must now do the following actions on each of the Tower nodes: Make a directory for collections, like /opt/collections/ # mkdir /opt/collections/ Change the file’s permissions and group ownership for the sei user as follows. # …