EX294 Deploy Ansible Automation Platform • Complete Question Bank
Complete EX294 Deploy Ansible Automation Platform question bank — all 0 questions with answers and detailed explanations.
Refer to the exhibit.
[root@controller ~]# cat /etc/ansible-automation-platform/ansible-navigator.yml
---
ansible-navigator:
execution-environment:
image: registry.internal.example.com/ee-supported:latest
pull:
policy: missing
playbook-artifact:
enable: false
logging:
level: debug
mode: stdout
set-environment:
ANSIBLE_INVENTORY: /opt/inventory/hosts
ANSIBLE_ROLES_PATH: /opt/rolesRefer to the exhibit.
[root@controller ~]# cat /etc/ansible-automation-platform/setup.sh
#!/bin/bash
# AAP 2.4 installer
# ...
ADMIN_PASSWORD='redhat'
PGHOST='192.168.1.100'
PGPORT='5432'
PGDATABASE='awx'
PGUSER='awx_admin'
PGPASSWORD='secure_pass'
# ...
[root@controller ~]# ./setup.sh -i inventory.yml
...
TASK [Installer : wait for controller to be ready] ****************************
fatal: [localhost]: FAILED! => {"changed": false, "msg": "Timeout waiting for controller to become ready. Check logs."}
[root@controller ~]# cat /var/log/ansible-automation-platform/controller/startup.log
...
ERROR: could not connect to server: Connection refused
Is the server running on host "192.168.1.100" and accepting TCP/IP connections on port 5432?Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
Manage packages via YUM
Copy files to remote hosts
Manage system services
Deploy Jinja2 templates
Manage user accounts
Drag a concept onto its matching description — or click a concept then click the description.
Hostname or IP to connect to
SSH user for connection
SSH port number
Private key file path
Python interpreter path
Refer to the exhibit.
```
{
"status": "failed",
"error": "Invalid callback plugin specified: 'some_plugin'",
"job_id": 1234
}
```Refer to the exhibit.
```yaml
---
- name: Deploy app
hosts: all
become: true
tasks:
- name: Copy config
template:
src: config.j2
dest: /etc/app/config.yml
now: yes
```Refer to the exhibit. ``` [webservers] web1 ansible_host=192.168.1.10 web2 ansible_host=192.168.1.11 [webservers:vars] ansible_user=admin ansible_ssh_private_key_file=/home/admin/.ssh/id_rsa ```