- Lab
- A Cloud Guru
Install and Configure a Pacemaker Cluster
Pacemaker is a high-availability Cluster Resource Manager (CRM) that runs on a group of servers in order to minimize downtime. Resources managed by Pacemaker will be moved in the event of a node failure and can be configured to run in tandem with other resources. In this lesson, you are tasked with installing and configuring a Pacemaker cluster that manages an Apache HTTP server resource as well as an IP resource.
Path Info
Table of Contents
-
Challenge
Install the required packages for Pacemaker and PCS on each cluster node.
Install the
pacemaker
andpcs
packages. -
Challenge
Start and enable the pcsd service on each cluster node.
On each node, start and enable
pcsd
. -
Challenge
Set the password for the hacluster user on each cluster node to "pacemaker”.
Set the password for the
hacluster
user to pacemaker. Do not include the quotes and ignore the bad password warning. -
Challenge
On pacemaker1, use pcs to authenticate to pcsd on the cluster nodes as the hacluster user.
Run the
pcs
authentication command frompacemaker1
and supply a username and password. -
Challenge
Generate and synchronize the Corosync configuration to both cluster nodes for a cluster named cluster1.
Generate and synchronize the Corosync configuration and start up the cluster.
-
Challenge
Set the stonith-enabled property to false.
Set the property with the
pcs property
command. -
Challenge
Add an IP resource named cluster_ip.
Create an IP resource with the
pcs resource
command. Name thecluster_ip
, with an IP address of10.0.1.50
, a netmask of24
, and a monitor interval of 30 seconds. -
Challenge
Add an Apache HTTP server as a cluster resource.
Use the
pcs resource
command to create the resource. The resource should be named apache, use/etc/httpd/conf/httpd.conf
as the configuration file, usehttp://localhost/server-status
as the status URL, and have a monitor interval of1
minute. -
Challenge
Set a colocation constraint so that the `apache` and `cluster_ip` resources always run on the same host.
Use the
pcs constraint
command to set the colocation constraint. -
Challenge
Set an order constraint so that the `cluster_ip` resource starts before the `apache` resource.
Use the
pcs constraint
command to set the order constraint.
What's a lab?
Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.
Provided environment for hands-on practice
We will provide the credentials and environment necessary for you to practice right within your browser.
Guided walkthrough
Follow along with the author’s guided walkthrough and build something new in your provided environment!
Did you know?
On average, you retain 75% more of your learning if you get time for practice.