0% found this document useful (0 votes)
592 views17 pages

EX294 Demo PDF

This document provides information about the Red Hat Certified Engineer (RHCE) certification exam for Red Hat Enterprise Linux 8. It includes the exam number EX294 and a link to purchase practice questions for the exam from a third party website.

Uploaded by

Maher Mechi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
592 views17 pages

EX294 Demo PDF

This document provides information about the Red Hat Certified Engineer (RHCE) certification exam for Red Hat Enterprise Linux 8. It includes the exam number EX294 and a link to purchase practice questions for the exam from a third party website.

Uploaded by

Maher Mechi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 17

Red Hat Certified Engineer

EX294
Red Hat Certified Engineer (RHCE) exam for
Red Hat Enterprise Linux 8 Exam

Thank You for Downloading EX294 Updated Exam


Questions

https://www.certsaway.com/redhat/ex294-exam-dumps

https://www.certsaway.com/
Braindumps Questions RedHat - EX294

Question #:1

Create a playbook calledtimesvnc.yml in /home/sandy/ansible using rhel system role timesync. Set the time to
use currently configured nip with the server 0.uk.pool.ntp.org. Enable burst. Do this on all hosts.

See the Explanation forcomplete Solution below.

Explanation
Solution as:

Question #:2

Create a file called specs.empty in home/bob/ansible on the local machine as follows:

HOST=

MEMORY=

BIOS=

VDA_DISK_SIZE=

VDB_DISK_SIZE=

Create the playbook /home/bob/ansible/specs.yml which copies specs.empty to all remote nodes'
path/root/specs.txt. Using the specs.yml playbook then edit specs.txt on the remote machines to reflect the
appropriate ansible facts.

See the Explanation for complete Solution below.

Explanation

100% Success with DumpsPedia.com 1 ofthe


15 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.certsaway.com/
Braindumps Questions RedHat - EX294

Solution as:

100% Success with DumpsPedia.com 2 ofthe


15 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.certsaway.com/
Braindumps Questions RedHat - EX294

Question #:3

Create a playbook called issue.yml in /home/sandy/ansible which changes the file /etc/issue on all managed
nodes: If host is a member of (lev then write "Development" If host is a member of testthen write "Test" If host
is a member ofprodthen write "Production"

See the Explanation for complete Solution below.

Explanation

100% Success with DumpsPedia.com 3 ofthe


15 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.certsaway.com/
Braindumps Questions RedHat - EX294

Solution as:

Question #:4

Create a file called packages.yml in/home/sandy/ansibleto 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.

100% Success with DumpsPedia.com 4 ofthe


15 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.certsaway.com/
Braindumps Questions RedHat - EX294

See theExplanation for complete Solution below.

Explanation
Solution as:

100% Success with DumpsPedia.com 5 ofthe


15 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.certsaway.com/
Braindumps Questions RedHat - EX294

100% Success with DumpsPedia.com 6 ofthe


15 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.certsaway.com/
Braindumps Questions RedHat - EX294

** 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

Question #:5

Create anansible vault password file calledlock.ymlwith the passwordreallysafepwin the/home/sandy/ansible


directory. In the lock.yml file define two variables. One ispw_devand the password is 'dev' and the other is
pw_mgrand the password is 'mgr' Create a regular file calledsecret.txtwhich contains the password for
lock.yml.

See the Explanation for complete Solution below.

Explanation
ansible-vault create lock.yml

New Vault Password: reallysafepw

Confirm: reallysafepw

Question #:6

Install and configure ansible

User sandy has been created on your control node with the appropriate permissions already, do not change or
modify ssh keys. Install the necessary packages to run ansible on the control node. Configure ansible.cfg to be
in folder /home/sandy/ansible/ansible.cfg and configure to access remote machines via the sandy user. All
roles should be in the path /home/sandy/ansible/roles. The inventory path should be in
/home/sandy/ansible/invenlory.

You will have access to 5 nodes.

100% Success with DumpsPedia.com 7 ofthe


15 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.certsaway.com/
Braindumps Questions RedHat - EX294

node1.example.com

node2.example.com

node3.example.com

node4.example.com

node5.example.com

Configure these nodes to be in an inventory file where node I is a member of group dev. nodc2 is a member of
group test, node3 is a member of group proxy, nodc4 and node 5 are members of group prod. Also, prod is a
member of group webservers.

See the Explanation for complete Solution below.

Explanation
In/home/sandy/ansible/ansible.cfg

[defaults]

inventory=/home/sandy/ansible/inventory

roles_path=/home/sandy/ansible/roles

remote_user= sandy

host_key_checking=false

[privilegeescalation]

become=true

become_user=root

become_method=sudo

become_ask_pass=false

In /home/sandy/ansible/inventory

[dev]

node1 .example.com

[test]

node2.example.com

100% Success with DumpsPedia.com 8 ofthe


15 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.certsaway.com/
Braindumps Questions RedHat - EX294

[proxy]

node3 .example.com

[prod]

node4.example.com

node5 .example.com

[webservers:children]

prod

Question #:7

In /home/sandy/ansible/create a playbook calledlogvol.yml. Inthe play create a logical volume calledIv0and


make it of size 1500MiB on volume groupvgOIf there is not enough space in the volume groupprinta message
"Not enough space for logical volume"and then make a 800MiBIv0instead. If the volume group still doesn't
exist, create a message"Volume group doesn't exist"Create anxfsfilesystem on allIv0logical volumes. Don't
mount the logical volume.

See the Explanation for complete Solution below.

Explanation
Solution as:

100% Success with DumpsPedia.com 9 ofthe


15 waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.certsaway.com/
Braindumps Questions RedHat - EX294

100% Success with DumpsPedia.com 10 ofthe


15waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.certsaway.com/
Braindumps Questions RedHat - EX294

Question #:8

Create a file in/home/sandy/ansible/calledreport.yml.Using this playbook, get a filecalledreport.txt(make it


look exactly as below). Copy this file over to all remote hosts at/root/report.txt.Then edit the lines in the file
to provide the real informationofthehosts. Ifa disk does not exist then write NONE.

See the Explanation for complete Solution below.

Explanation
Solution as:

100% Success with DumpsPedia.com 11 ofthe


15waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.certsaway.com/
Braindumps Questions RedHat - EX294

100% Success with DumpsPedia.com 12 ofthe


15waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.certsaway.com/
Braindumps Questions RedHat - EX294

Question #:9

Create a playbookthatchanges the default target onallnodes tomulti-usertarqet. Do this in playbook file called
target.yml in/home/sandy/ansible

See the Explanation for complete Solution below.

Explanation

100% Success with DumpsPedia.com 13 ofthe


15waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.certsaway.com/
Braindumps Questions RedHat - EX294

- 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

Question #:10

Create a file calledrequirements.ymlin/home/sandy/ansible/rolesa file calledrole.yml in


/home/sandy/ansible/.Thehaproxy-roleshould be used on theproxyhost. And when you curl
http://node3.example.comit should display "Welcome tonode4.example.com" and when you curl again
"Welcome tonode5.example.com"Thephp-roleshould be used on theprodhost.

See the Explanation for complete Solution below.

Explanation
Solution as:

Check the proxy host by curlhttp://node3.example.com

100% Success with DumpsPedia.com 14 ofthe


15waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.certsaway.com/
Braindumps Questions RedHat - EX294

100% Success with DumpsPedia.com 15 ofthe


15waterma
PDF Watermark Remover DEMO : Purchase from www.PDFWatermarkRemover.com to remove

https://www.certsaway.com/
THANK YOU FOR DOWNLOADING EX294
UPDATED EXAM DUMPS

Note: Thanks For Trying The Demo Of Our EX294 Exam Product
Questions

Visit Our Site to Purchase the Full Set of Actual EX294 Exam Questions
With Answers.

100% Money Back Guarantee

Visit The Link Below

https://www.certsaway.com/redhat/ex294-exam-dumps

Use Coupon “Marvel20%” for extra 20% discount on the purchase of PDF
Questions and Answers. Pass your EX294 certification exams in first try.

https://www.certsaway.com/

You might also like