Red Hat Certified
Engineer (RHCE) exam
for Red Hat Enterprise
Linux 8
Version: Demo
[ Total Questions: 10]
Web: www.dumpspedia.com
Email: support@dumpspedia.com
RedHat
EX294
IMPORTANT NOTICE
Feedback
We have developed quality product and state-of-art service to ensure our customers interest. If you have any
suggestions, please feel free to contact us at feedback@dumpspedia.com
Support
If you have any questions about our product, please provide the following items:
exam code
screenshot of the question
login id/email
please contact us at and our technical experts will provide support within 24 hours.support@dumpspedia.com
Copyright
The product of each order has its own encryption code, so you should use it independently. Any unauthorized
changes will inflict legal punishment. We reserve the right of final explanation for this statement.
RedHat - EX294Braindumps Questions
1 of 15100% Success with DumpsPedia.com
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
RedHat - EX294Braindumps Questions
2 of 15100% Success with DumpsPedia.com
Solution as:
RedHat - EX294Braindumps Questions
3 of 15100% Success with DumpsPedia.com
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 then write "Test" If hosttest
is a member of then write "Production"prod
See the Explanation for complete Solution below.
Explanation
RedHat - EX294Braindumps Questions
4 of 15100% Success with DumpsPedia.com
Solution as:
Question #:4
Create a file called packages.yml in to install some packages for the following hosts. On/home/sandy/ansible
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.
RedHat - EX294Braindumps Questions
5 of 15100% Success with DumpsPedia.com
See theExplanation for complete Solution below.
Explanation
Solution as:
RedHat - EX294Braindumps Questions
6 of 15100% Success with DumpsPedia.com
RedHat - EX294Braindumps Questions
7 of 15100% Success with DumpsPedia.com
** 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 called with the password in thelock.yml reallysafepw /home/sandy/ansible
directory. In the lock.yml file define two variables. One is and the password is 'dev' and the other ispw_dev
and the password is 'mgr' Create a regular file called which contains the password forpw_mgr secret.txt
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.
RedHat - EX294Braindumps Questions
8 of 15100% Success with DumpsPedia.com
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
RedHat - EX294Braindumps Questions
9 of 15100% Success with DumpsPedia.com
[proxy]
node3 .example.com
[prod]
node4.example.com
node5 .example.com
[webservers:children]
prod
Question #:7
In /home/sandy/ansible/create a playbook called the play create a logical volume called andlogvol.yml. In Iv0
make it of size 1500MiB on volume group If there is not enough space in the volume group a messagevgO print
and then make a 800MiB instead. If the volume group still doesn't"Not enough space for logical volume" Iv0
exist, create a message Create an filesystem on all logical volumes. Don't"Volume group doesn't exist" xfs Iv0
mount the logical volume.
See the Explanation for complete Solution below.
Explanation
Solution as:
RedHat - EX294Braindumps Questions
10 of 15100% Success with DumpsPedia.com
RedHat - EX294Braindumps Questions
11 of 15100% Success with DumpsPedia.com
Question #:8
Create a file in called Using this playbook, get a filecalled (make it/home/sandy/ansible/ report.yml. report.txt
look exactly as below). Copy this file over to all remote hosts at Then edit the lines in the file/root/report.txt.
to provide the real information the a disk does not exist then write NONE.of hosts. If
See the Explanation for complete Solution below.
Explanation
Solution as:
RedHat - EX294Braindumps Questions
12 of 15100% Success with DumpsPedia.com
RedHat - EX294Braindumps Questions
13 of 15100% Success with DumpsPedia.com
Question #:9
Create a playbook changes the default target on nodes to tarqet. Do this in playbook file calledthat all multi-user
target.yml in/home/sandy/ansible
See the Explanation for complete Solution below.
Explanation
RedHat - EX294Braindumps Questions
14 of 15100% Success with DumpsPedia.com
- 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 called in a file calledrequirements.yml /home/sandy/ansible/roles role.yml in
The should be used on the host. And when you curl/home/sandy/ansible/. haproxy-role proxy
it should display "Welcome tonode4.example.com" and when you curl againhttp://node3.example.com
"Welcome tonode5.example.com"The should be used on the host.php-role prod
See the Explanation for complete Solution below.
Explanation
Solution as:
Check the proxy host by curlhttp://node3.example.com
RedHat - EX294Braindumps Questions
15 of 15100% Success with DumpsPedia.com
About dumpspedia.com
dumpspedia.com was founded in 2007. We provide latest & high quality IT / Business Certification Training Exam
Questions, Study Guides, Practice Tests.
We help you pass any IT / Business Certification Exams with 100% Pass Guaranteed or Full Refund. Especially
Cisco, CompTIA, Citrix, EMC, HP, Oracle, VMware, Juniper, Check Point, LPI, Nortel, EXIN and so on.
View list of all certification exams: All vendors
We prepare state-of-the art practice tests for certification exams. You can reach us at any of the email addresses listed
below.
Sales: sales@dumpspedia.com
Feedback: feedback@dumpspedia.com
Support: support@dumpspedia.com
Any problems about IT certification or our products, You can write us back and we will get back to you within 24
hours.

Red Hat Certified Engineer (RHCE) EX294 Exam Questions

  • 1.
    Red Hat Certified Engineer(RHCE) exam for Red Hat Enterprise Linux 8 Version: Demo [ Total Questions: 10] Web: www.dumpspedia.com Email: support@dumpspedia.com RedHat EX294
  • 2.
    IMPORTANT NOTICE Feedback We havedeveloped quality product and state-of-art service to ensure our customers interest. If you have any suggestions, please feel free to contact us at feedback@dumpspedia.com Support If you have any questions about our product, please provide the following items: exam code screenshot of the question login id/email please contact us at and our technical experts will provide support within 24 hours.support@dumpspedia.com Copyright The product of each order has its own encryption code, so you should use it independently. Any unauthorized changes will inflict legal punishment. We reserve the right of final explanation for this statement.
  • 3.
    RedHat - EX294BraindumpsQuestions 1 of 15100% Success with DumpsPedia.com 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
  • 4.
    RedHat - EX294BraindumpsQuestions 2 of 15100% Success with DumpsPedia.com Solution as:
  • 5.
    RedHat - EX294BraindumpsQuestions 3 of 15100% Success with DumpsPedia.com 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 then write "Test" If hosttest is a member of then write "Production"prod See the Explanation for complete Solution below. Explanation
  • 6.
    RedHat - EX294BraindumpsQuestions 4 of 15100% Success with DumpsPedia.com Solution as: Question #:4 Create a file called packages.yml in to install some packages for the following hosts. On/home/sandy/ansible 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.
  • 7.
    RedHat - EX294BraindumpsQuestions 5 of 15100% Success with DumpsPedia.com See theExplanation for complete Solution below. Explanation Solution as:
  • 8.
    RedHat - EX294BraindumpsQuestions 6 of 15100% Success with DumpsPedia.com
  • 9.
    RedHat - EX294BraindumpsQuestions 7 of 15100% Success with DumpsPedia.com ** 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 called with the password in thelock.yml reallysafepw /home/sandy/ansible directory. In the lock.yml file define two variables. One is and the password is 'dev' and the other ispw_dev and the password is 'mgr' Create a regular file called which contains the password forpw_mgr secret.txt 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.
  • 10.
    RedHat - EX294BraindumpsQuestions 8 of 15100% Success with DumpsPedia.com 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
  • 11.
    RedHat - EX294BraindumpsQuestions 9 of 15100% Success with DumpsPedia.com [proxy] node3 .example.com [prod] node4.example.com node5 .example.com [webservers:children] prod Question #:7 In /home/sandy/ansible/create a playbook called the play create a logical volume called andlogvol.yml. In Iv0 make it of size 1500MiB on volume group If there is not enough space in the volume group a messagevgO print and then make a 800MiB instead. If the volume group still doesn't"Not enough space for logical volume" Iv0 exist, create a message Create an filesystem on all logical volumes. Don't"Volume group doesn't exist" xfs Iv0 mount the logical volume. See the Explanation for complete Solution below. Explanation Solution as:
  • 12.
    RedHat - EX294BraindumpsQuestions 10 of 15100% Success with DumpsPedia.com
  • 13.
    RedHat - EX294BraindumpsQuestions 11 of 15100% Success with DumpsPedia.com Question #:8 Create a file in called Using this playbook, get a filecalled (make it/home/sandy/ansible/ report.yml. report.txt look exactly as below). Copy this file over to all remote hosts at Then edit the lines in the file/root/report.txt. to provide the real information the a disk does not exist then write NONE.of hosts. If See the Explanation for complete Solution below. Explanation Solution as:
  • 14.
    RedHat - EX294BraindumpsQuestions 12 of 15100% Success with DumpsPedia.com
  • 15.
    RedHat - EX294BraindumpsQuestions 13 of 15100% Success with DumpsPedia.com Question #:9 Create a playbook changes the default target on nodes to tarqet. Do this in playbook file calledthat all multi-user target.yml in/home/sandy/ansible See the Explanation for complete Solution below. Explanation
  • 16.
    RedHat - EX294BraindumpsQuestions 14 of 15100% Success with DumpsPedia.com - 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 called in a file calledrequirements.yml /home/sandy/ansible/roles role.yml in The should be used on the host. And when you curl/home/sandy/ansible/. haproxy-role proxy it should display "Welcome tonode4.example.com" and when you curl againhttp://node3.example.com "Welcome tonode5.example.com"The should be used on the host.php-role prod See the Explanation for complete Solution below. Explanation Solution as: Check the proxy host by curlhttp://node3.example.com
  • 17.
    RedHat - EX294BraindumpsQuestions 15 of 15100% Success with DumpsPedia.com
  • 18.
    About dumpspedia.com dumpspedia.com wasfounded in 2007. We provide latest & high quality IT / Business Certification Training Exam Questions, Study Guides, Practice Tests. We help you pass any IT / Business Certification Exams with 100% Pass Guaranteed or Full Refund. Especially Cisco, CompTIA, Citrix, EMC, HP, Oracle, VMware, Juniper, Check Point, LPI, Nortel, EXIN and so on. View list of all certification exams: All vendors We prepare state-of-the art practice tests for certification exams. You can reach us at any of the email addresses listed below. Sales: sales@dumpspedia.com Feedback: feedback@dumpspedia.com Support: support@dumpspedia.com Any problems about IT certification or our products, You can write us back and we will get back to you within 24 hours.