Skip to content

EX436 Red Hat Certified Specialist in High Availability Clustering exam Practice Questions

Prepare for EX436 with more than an answer.

150 questions in the full set12 sample questionsUpdated Sep 20, 2026
Time limit
180 minutes
Level
Specialist (counts toward Red Hat Certified Architect / RHCA)
Valid for
See Red Hat Certification renewal policy (https://www.redhat.com/en/services/certification/renewal). Not asserted here to avoid fabrication.
Domains covered on the exam 8
  1. Configure a high-availability cluster
  2. Configure cluster fencing
  3. Configure cluster logging and monitoring
  4. Configure cluster monitoring
  5. Configure a clustered fail-over service
  6. Configure cluster service behavior
  7. Configure storage
  8. Configure GFS2 filesystems
  1. 1

    After configuring a new STONITH device, you want to manually verify that the cluster can successfully execute a fencing action against node2. Which command securely triggers this test through the Pacemaker infrastructure?

    Show answer details

    Correct answer: B

    The pcs stonith fence command is the standard and safest way to manually test fencing. It requests Pacemaker to fence the target node using the configured STONITH topology, verifying the entire fencing stack.

  2. 2

    In a two-node cluster, a severe network interruption occurs, and both nodes attempt to fence each other simultaneously. To prevent a 'fencing loop' where both nodes reboot each other, you decide to configure one node to wait slightly before executing its fencing action. Which parameter should you apply to the STONITH device?

    Show answer details

    Correct answer: B

    The pcmk_delay_max parameter introduces a random delay (up to the specified maximum) before executing a fencing action. This breaks the tie in a two-node split-brain scenario, ensuring one node survives while the other is fenced.

  3. 3

    Which configuration file is primarily responsible for dictating how the underlying Corosync cluster engine logs its internal operational events and debug messages?

    Show answer details

    Correct answer: B

    The /etc/corosync/corosync.conf file contains the logging { ... } stanza, which controls where Corosync sends its logs (syslog, logfile, stderr) and at what debug level.

  4. 4

    You want to ensure that all Corosync logging messages are forwarded directly to systemd's journal instead of a traditional flat file. Which directive must be set in the logging stanza of the cluster configuration?

    Show answer details

    Correct answer: B

    In modern RHEL distributions, setting to_syslog: yes in corosync.conf forwards the logs to the local syslog facility, which is captured and managed by systemd's journald by default.

  5. 5

    As a system administrator for NovaTech, you are deploying a new Red Hat Enterprise Linux (RHEL) High Availability cluster. Before creating the cluster, you must authenticate the nodes so that the pcs command can communicate with the pcsd daemon across all systems. Which command is the correct standard method in RHEL 8/9 to accomplish this?

    Show answer details

    Correct answer: B

    In RHEL 8 and 9, the command to authenticate nodes for the pcsd daemon is pcs host auth. The older syntax (pcs cluster auth) was deprecated and replaced to better reflect that the authentication happens at the host level before the cluster is formally created.

  6. 6

    You are automating the deployment of a Pacemaker cluster using the Red Hat Enterprise Linux ha_cluster Ansible system role. Which TWO variables must be defined in your playbook to successfully set the cluster name and the authentication password for the hacluster user? (Select TWO)

    Show answer details

    Correct answer: B, D

    The ha_cluster system role uses specific variable naming conventions. ha_cluster_cluster_name is required to define the name of the Corosync cluster.

    The ha_cluster_hacluster_password variable is explicitly used by the ha_cluster role to set the password for the hacluster user on all nodes, which is necessary for pcsd authentication.

Create an account to continue.