시험덤프
매달, 우리는 1000명 이상의 사람들이 시험 준비를 잘하고 시험을 잘 통과할 수 있도록 도와줍니다.
  / EX294 덤프  / EX294 문제 연습

RedHat EX294 시험

Red Hat Certified Engineer (RHCE) exam for Red Hat Enterprise Linux 8 온라인 연습

최종 업데이트 시간: 2024년04월21일,20문제.

당신은 온라인 연습 문제를 통해 RedHat EX294 시험지식에 대해 자신이 어떻게 알고 있는지 파악한 후 시험 참가 신청 여부를 결정할 수 있다.

시험을 100% 합격하고 시험 준비 시간을 35% 절약하기를 바라며 EX294 덤프 (최신 실제 시험 문제)를 사용 선택하여 현재 최신 20개의 시험 문제와 답을 포함하십시오.

 / 1

Question No : 1


CORRECT TEXT
Create anansible vault password file calledlock.ymlwith the passwordreallysafepwin the /home/sandy/ansibledirectory. In the lock.yml file define two variables. One ispw_devand the password is 'dev' and the other ispw_mgrand the password is 'mgr' Create a regular file calledsecret.txtwhich contains the password for lock.yml.

정답: ansible-vault create lock.yml New Vault Password: reallysafepw Confirm: reallysafepw


Question No : 2


CORRECT TEXT
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'

정답: Solution as:


Question No : 3


CORRECT TEXT
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.

정답: Solution as:


Question No : 4


CORRECT TEXT
Create an empty encrypted file calledmyvault.yml in /home/sandy/ansibleand set the passwordtonotsafepw. Rekey the passwordtoiwejfj2221.

정답: ansible-vault create myvault.yml Create new password: notsafepw Confirm password: notsafepwansible-vault rekeymyvault.yml
Current password: notsafepw New password: iwejfj2221 Confirm password: iwejfj2221

Question No : 5


CORRECT TEXT
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.

정답: Solution as:



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

 / 1