2026년에도 ExamPassdump의 EX374 학습 자료는 PDF, Desktop Test Engine, Online Test Engine 세 가지 형태로 제공됩니다. 학습 환경과 스타일에 맞는 형태를 선택해 RedHat Red Hat Certified Specialist in Developing Automation with Ansible Automation Platform 시험을 준비해 보시기 바랍니다.
RedHat EX374 시험 개요:
| 인증 벤더: | Red Hat |
|---|---|
| 시험명: | Red Hat Certified Specialist in Developing Automation with Ansible Automation Platform |
| 시험 번호: | EX374 |
| 지원 언어: | 영어 |
| 시험 형식: | 실습 기반, 핸즈온 랩 |
| 자격증 유효 기간: | 3년 |
| 관련 자격증: | Red Hat Certified Architect (RHCA) |
| 시험 시간: | 180-240 |
| 샘플 문제: | RedHat EX374 샘플 문제 |
| 응시 방법: | 온라인 원격 시험 또는 시험 센터 |
| 전제 조건: | 권장 사항: RH294 Red Hat Enterprise Linux Automation with Ansible 또는 이에 준하는 경험; Red Hat Enterprise Linux, Ansible Automation Platform, automation controller 및 automation hub에 대한 친숙함. |
| 공식 요강 URL: | https://www.redhat.com/en/services/training/red-hat-certified-specialist-developing-automation-ansible-automation-platform-exam |
RedHat EX374 시험 요강 주제:
| 섹션 | 목표 |
|---|---|
| Ansible 설정 관리 | - Ansible 설정 조정
|
| Automation Controller 관리 | - automation controller 리소스 작업
|
| 인벤토리 변수 관리 | - host 및 group 변수 작업
|
| 작업 실행 관리 | - playbook 실행 제어
|
| Execution Environment 관리 | - execution environment 빌드 및 사용
|
| 콘텐츠 컬렉션 관리 | - Ansible collection 작업
|
| Git 이해 및 사용 | - Git 리포지토리 관리
|
RedHat EX374 시험에 대한 질문과 답변 모음
EX374 시험은 Red Hat이 시행하는 공인 인증시험으로, 통과하시면 Red Hat Certified Specialist 인증을 취득하실 수 있습니다. 이 인증은 전문가 등급에 해당합니다. Red Hat Certified Architect (RHCA) 등의 관련 인증과도 연계되어 있어 커리어 확장에 도움이 됩니다. ExamPassdump에서는 해당 시험 대비용 300문항의 연습문제를 제공하고 있습니다.
EX374 시험의 응시 조건은 다음과 같습니다. 권장 사항: RH294 Red Hat Enterprise Linux Automation with Ansible 또는 이에 준하는 경험; Red Hat Enterprise Linux, Ansible Automation Platform, automation controller 및 automation hub에 대한 친숙함. 응시 조건은 변경될 수 있으므로 최신 정보는 공식 안내 페이지에서 반드시 확인하시기 바랍니다.
가능합니다. ExamPassdump에서는 EX374 무료 샘플 문제를 제공하고 있어 구매 전에 문제 품질과 구성을 직접 확인하실 수 있습니다. 또한 제품 구매 후에는 365일 동안 무료 업데이트가 제공되며, 업데이트 기간이 만료된 이후에는 50% 할인된 가격으로 갱신하실 수 있습니다.
ExamPassdump은 환불 보장 정책을 운영하고 있습니다. 구매 후 60일 이내에 EX374 시험에 응시하여 불합격하신 경우, 응시 등록 확인서 사본과 공식 성적표(Score Report) PDF를 시험일로부터 2일 이내에 제출하시면 전액 환불을 신청하실 수 있으며 접수 후 7일 이내에 처리됩니다. 구매 후 3일 이내 응시, 다운로드 후 미응시, 무료 자료 및 만료된 주문은 적용 대상이 아니며 수험자 명의와 결제자 명의가 일치해야 합니다. 환불 대신 동일한 가치의 다른 시험 자료 2개를 무료로 받고 기존 제품의 업데이트 서비스를 유지하는 방법도 선택하실 수 있습니다. 제품은 결제 즉시 다운로드 가능하며 결제 후 1분 이내에 이메일로도 발송됩니다. 2시간이 지나도 받지 못하신 경우 고객센터로 문의해 주시기 바랍니다. 설치 가능한 컴퓨터 대수에는 제한이 없습니다.
EX374 시험은 총 7개의 출제 영역으로 구성되어 있습니다. 주요 영역으로는 인벤토리 변수 관리,작업 실행 관리,Ansible 설정 관리 등이 있습니다. 각 영역의 세부 항목과 배점 비율은 위에 정리된 전체 시험 범위에서 확인하시기 바랍니다.
최신 Red Hat Certified Specialist EX374 무료샘플문제
Create a playbook to override the default inventory SSH port by using a special variable at runtime.
# playbook.yml
- name: Test connection with overridden SSH port hosts: web1
tasks:
- ping:
Execution:
ansible-playbook -i inventory.yml playbook.yml -e "ansible_port=2022"
Explanation:
Passing ansible_port as an extra variable ensures runtime overrides without altering the inventory.
Validate the configuration of group_vars for web_servers.
ansible-inventory -i inventory.yml --graph
Explanation:
ansible-inventory --graph displays the host and group hierarchy, confirming the correct application of variables.
Run a command on the control node but store the result in the context of a managed host.
- name: Store control node result hosts: web1
tasks:
- name: Get disk usage on control node
command: df -h
delegate_to: localhost
register: disk_usage
- name: Show disk usage debug:
var: disk_usage
Explanation:
This task demonstrates delegating commands to the control node while retaining results within the managed host's context.
Make a file named config.txt in the cloned repository, add sample configuration details, and commit the file with the message "Add initial config".
cd /home/user/projects/repo
echo "server=127.0.0.1" > config.txt
git add config.txt
git commit -m "Add initial config"
Explanation:
New files must be staged with git add before committing. The git commit command saves the changes with a descriptive message.
Use delegate_to to copy a file from the control node to a managed node.
- name: Copy file using delegation hosts: web1
tasks:
- name: Copy file to db1 copy:
src: /tmp/example.txt
dest: /tmp/example.txt delegate_to: db1
Explanation:
The task uses the copy module to transfer files from the control node to db1, delegating the task regardless of the web1 context.



1247 분의 상품리뷰 


자격증에 매달려 -
ExamPassdump에서 자료구해서 RedHat EX374시험을 봤는데 합격했어요.
자료가 아직 유효합니다. EX316시험자료도 유효한지 문의하고 구매할려구요.^^