[2021] EX294 PDF Questions - Perfect Prospect To Go With TestInsides Practice Exam [Q11-Q27]

Share

[2021] EX294 PDF Questions - Perfect Prospect To Go With TestInsides Practice Exam

RedHat EX294 Pdf Questions - Outstanding Practice To your Exam


RedHat EX294 Exam Syllabus Topics:

TopicDetails
Topic 1
  • Create simple shell scripts that run custom Ansible commands
  • Administrative work scenario
Topic 2
  • Understand and use basic tools
  • System deployment, configuration and maintenance
Topic 3
  • Create managed managed nodes
  • Configure privilege escalation on managed nodes
Topic 4
  • Create a simple script
  • Configure error handling
  • Working with roles
  • Download and use roles from Ansible Galaxy
Topic 5
  • Configure local storage
  • Operating system
Topic 6
  • To protect sensitive data, use Ansible Vault in the user guide
  • Take advantage of additional enhancements
Topic 7
  • Features Use system modules that work with Software package and storage, Firewall rules, storage devices, Users and groups
Topic 8
  • Unable to create drama and playbook
  • Install the required package
  • Parallel management
Topic 9
  • Create SSH keys and distribute them to managed nodes
  • Create and use static invariants to define host groups
Topic 10
  • Create and configure file systems
  • User and group management
  • Security management
Topic 11
  • Understand the key components of Ancibel Exams, Units, Variable, Facts, Play the manual, configuration file
Topic 12
  • Install and configure a compatible control unit
  • Create a static host inventory file
  • Create a configuration file
Topic 13
  • Use the documentation provided to get specific information about the available modules and commands
Topic 14
  • Verify that the functional configuration is correct by using the Ansible custom command
Topic 15
  • Use the variable to get the results of the command run
  • Use the conditions to control the progress of the game
Topic 16
  • Create an instruction manual to configure the system for a specific situation
  • Learn to work with frequently used Ansible units

 

NEW QUESTION 11
Create a playbook that changes the default target on all nodes to multi-user tarqet. Do this in playbook file called target.yml in /home/sandy/ansible

  • A. - name: change default target
    hosts: all
    tasks:
    - name: change target
    file:
    src: /usr/lib/systemd/system/multi-user.target dest: /etc/systemd/system/default.target state: link
  • B. - name: change default target
    hosts: all
    - name: change target
    file:
    src: /usr/lib/systemd/system/multi-user.target dest: /etc/systemd/system/default.target state: link

Answer: A

 

NEW QUESTION 12
Create a role called sample-apache in /home/sandy/ansible/roles that enables and starts httpd, enables and starts the firewall and allows the webserver service. Create a template called index.html.j2 which creates and serves a message from /var/www/html/index.html Whenever the content of the file changes, restart the webserver service.
Welcome to [FQDN] on [IP]
Replace the FQDN with the fully qualified domain name and IP with the ip address of the node using ansible facts. Lastly, create a playbook in /home/sandy/ansible/ called apache.yml and use the role to serve the index file on webserver hosts.

  • A. Option

    /home/sandy/ansible/roles/sample-apache/tasks/main.yml

    /home/sandy/ansible/roles/sample-apache/templates/index.html.j2

    In /home/sandy/ansible/roles/sample-apache/handlers/main.yml
  • B. Option

    /home/sandy/ansible/roles/sample-apache/tasks/main.yml

    /home/sandy/ansible/roles/sample-apache/templates/index.html.j2
    In /home/sandy/ansible/roles/sample-apache/handlers/main.yml

Answer: A

 

NEW QUESTION 13
Create a playbook called regulartasks.yml which has the system that append the date to /root/datefile every day at noon. Name is job 'datejob'

  • A. Solution as:
  • B. Solution as:

Answer: B

 

NEW QUESTION 14
Create a file called packages.yml in /home/sandy/ansible to install some packages for the following hosts. On dev, prod and webservers install packages httpd, mod_ssl, and mariadb. On dev only install the development tools package. Also, on dev host update all the packages to the latest.

  • A. Option

    ** NOTE 1 a more acceptable answer is likely 'present' since it's not asking to install the latest state: present
    ** NOTE 2 need to update the development node
    - name: update all packages on development node
    yum:
    name: '*'
    state: latest
  • B. Option

    ** NOTE 1 a more acceptable answer is likely 'present' since it's not asking to install the latest state: present
    ** NOTE 2 need to update the development node
    - name: update all packages on development node
    yum:
    name: '*'
    state: latest

Answer: A

 

NEW QUESTION 15
Create an empty encrypted file called myvault.yml in /home/sandy/ansible and set the password to notsafepw. Rekey the password to iwejfj2331.

  • A. ansible-vault create myvault.yml
    Create new password: notsafepw Confirm password: notsafepw ansible-vault rekey myvault.yml Current password: notsafepw New password: iwejfj2331 Confirm password: iwejfj2221
  • B. ansible-vault create myvault.yml
    Create new password: notsafepw Confirm password: notsafepw ansible-vault rekey myvault.yml Current password: notsafepw New password: iwejfj2221 Confirm password: iwejfj2221

Answer: B

 

NEW QUESTION 16
Create a file called requirements.yml in /home/sandy/ansible/roles to install two roles. The source for the first role is geerlingguy.haproxy and geerlingguy.php. Name the first haproxy-role and the second php-role. The roles should be installed in /home/sandy/ansible/roles.

  • A. in /home/sandy/ansible/roles
    vim requirements.yml

    Run the requirements file from the roles directory:
    ansible-galaxy install -r requirements.yml -p /home/sandy/ansible/roles
  • B. in /home/sandy/ansible/roles
    vim requirements.yml

    Run the requirements file from the roles directory:
    ansible-galaxy install -r requirements.yml -p /home/sandy/ansible/roles

Answer: B

 

NEW QUESTION 17
Create a playbook called webdev.yml in 'home/sandy/ansible. The playbook will create a directory Avcbdev on dev host. The permission of the directory are 2755 and owner is webdev. Create a symbolic link from /Webdev to /var/www/html/webdev. Serve a file from Avebdev7index.html which displays the text "Development" Curl http://node1.example.com/webdev/index.html to test

  • A. Solution as:
  • B. Solution as:

Answer: A

 

NEW QUESTION 18
Create the users in the file usersjist.yml file provided. Do this in a playbook called users.yml located at /home/sandy/ansible. The passwords for these users should be set using the lock.yml file from TASK7. When running the playbook, the lock.yml file should be unlocked with secret.txt file from TASK 7.
All users with the job of 'developer' should be created on the dev hosts, add them to the group devops, their password should be set using the pw_dev variable. Likewise create users with the job of 'manager' on the proxy host and add the users to the group 'managers', their password should be set using the pw_mgr variable.

  • A. ansible-playbook users.yml -vault-password-file=secret.txt
  • B. ansible-playbook users.yml -vault-password-file=secret.txt

Answer: B

 

NEW QUESTION 19
......

Online Questions - Outstanding Practice To your EX294 Exam: https://www.testinsides.top/EX294-dumps-review.html