Install slave / secondary node for high availability in jump server
How do I Install slave/secondary node for high availability in Ezeelogin jump server?
The slave node acts as the failover in case the primary goes down. Its always recommended to setup the slave node so that server are accessible at all times just in case the primary nodes is accessible due to hardware or network failures.
1. Login into your customer portal area
2. Go to License tab,
On Old customer portal . : select your primary license, click on the ’Buy Cluster’ link on the right
On New customer portal . : Edit the license and add Secondary IP address
3. Issue the slave/secondary license for the IP of the slave server.
For standalone license : Rename the license file to ezlic.dat place it under the /root/ directory
4. Refer the following article to install Ezeelogin dependency packages and follow it till the 3rd step ( ioncube loader). How to install Ezeelogin dependency packages?
5. Download the same version of Ezeelogin in the slave / secondary server.
wget https://downloads.ezeelogin.com/ezlogin_7.x.x.bin
6. Execute the following command on primary server to grant access to ezeelogin database from secondary/slave node
php /usr/local/ezlogin/grant_host.php <ip_address of secondary node/slave>
If you are planning to connect to remote MySQL/RDS servers, you should grant to access to database on the remote database server. This is not required if your MySQL server is running on localhost.
(Replace "root" with database admin user & 'PASSWORD' with your database admin user password)
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'PASSWORD' WITH GRANT OPTION;
mysql> flush privileges;
7. Execute the following command on slave/secondary node
sh ezlogin_7.x.x.bin -- -secondary <ip_address of secondary/slave node> -othernode <ip_address of master node>
If you are getting the following error after installation "ERROR granting access for DB user: Access denied for user 'root'@'%' to database 'ezlogin_jzgzs' " , run the following command to grant privileges manually . This error usually pop-ups while using remote MySQL database/ RDS connections.
Login to MySQL as root or admin user & replace with your ezeelogin database credentials .Ezeelogin database credentials such as dbname, dbusername & dbpassword will displayed on installation screen[reviewsettings]) or you can refer the article to retrieve Ezeelogin database credentials.
[email protected]:~# mysql -u root -p
mysql> grant all on ezeelogin_dbname.* to 'ezlogin_dbusername'@'%' identified by 'ezeelogin_dbusername_password' ;
mysql> flush privileges;
For Example: mysql> grant all on ezlogin_jzgzs.* to 'ezlogin_xynqwd'@'%' identified by '!T3}3w$czV$6VrWxG)kn{5&3t5'; ( Database credentials such as dbname, dbusername & dbpassword will displayed on installation screen[reviewsettings])
Refer the URL