Linux HA using keepalived

HA Configuration keepalived is a package that can configure HA of 2 servers using virtual IP. Keepalived allows you to easily duplicate your web server, application server, etc. Web Server, Application Server. These services respond to requests from external users. Articles on HA configurations for these inbound services are easy to find. A simple service configuration is as follows Keepalived Install From now on, I'll use IP " 192.168.126.91 " for the first node, " 192.168.126.92 " for the second node.And " 192.168.126.90 " will be the virtual IP. Both computer 192.168.126.91, 192.168.126.92 must be the same OS.(I'm using CentOS 7) First install keepalived package and enable the service on both computers. shell>yum install keepalived shell>systemctl enable keepalived Basic Keepalived Configuration Next configure both computers' keepalived.conf(/etc/keepalived/keepalived.conf). Node 1 (192.168.126.91) ...