Difference between revisions of "HA NFS on Amazon Linux 2"
Jump to navigation
Jump to search
Michael.mast (talk | contribs) (Created page with "<ref>https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/high_availability_add-on_administration/ch-nfsserver-haaa</ref> *Will be using two t3a.larg...") |
Michael.mast (talk | contribs) |
||
Line 3: | Line 3: | ||
<pre> | <pre> | ||
sudo yum upgrade -y && sudo reboot -h now | sudo yum upgrade -y && sudo reboot -h now | ||
+ | sudo yum install pcs pacemaker fence-agents-all -y | ||
+ | |||
+ | sudo passwd hacluster | ||
+ | Changing password for user hacluster. | ||
+ | New password: | ||
+ | Retype new password: | ||
+ | passwd: all authentication tokens updated successfully. | ||
+ | |||
+ | sudo systemctl enable --now pcsd.service | ||
</pre> | </pre> |
Revision as of 10:53, 15 December 2020
- Will be using two t3a.larg instances in an active/passive config.
sudo yum upgrade -y && sudo reboot -h now sudo yum install pcs pacemaker fence-agents-all -y sudo passwd hacluster Changing password for user hacluster. New password: Retype new password: passwd: all authentication tokens updated successfully. sudo systemctl enable --now pcsd.service