About
Zephyr Data Center is a solution you use to organize testing by using cluster machines. You deploy Zephyr on multiple nodes, set up an external database and create a shared folder – all this is done to provide high availability and performance at scale for the users working with Zephyr. If a node fails for some reason, the requests are redirected to the other nodes:
The deployment components include the following:
Load Balancer - balances the load across the cluster nodes.
Elasticsearch – a search engine deployed on the server node as a micro service or as a separate process in the virtual private network.
Shared database – a shared database used by the nodes. Zephyr supports MySQL, MS SQL Server, and Oracle Database.
Shared directory – a shared folder where attachments are stored. In a cluster environment, this folder must be shared with write permissions. Network-attached storage (NAS) and similar devices are supported.
Note |
---|
It is recommended to have this clustered deployment behind a firewall. |
Requirements
The same Java version must be installed on all the nodes.
The same time zone must be set on all the nodes and the current time must be synchronized (use the Network Time Protocol daemon (ntpd) or a similar service).
Installation procedure
To install Zephyr Enterprise on cluster nodes, you need to perform the following:
1. Install a database
You can installone of the following database management systems on any computer where Zephyr is not installed:
MySQL (make sure the ITCC and Dversion databases are not installed)
Note |
---|
You must have a connector JAR file for your MySQL, Microsoft SQL Server or Oracle database. |
2. Install Elasticsearch
Install Elasticsearch 5.5.0 (a search engine) on any computer where Zephyr is not installed.
3. Set up a shared directory
Expand | ||
---|---|---|
| ||
Share a folder by using NAS (network-attached storage) or a similar device: 1. Create a shared folder with read/write access in NAS. 2. On all the nodes, open the Program Files\Zephyr\tomcat\webapps\flex\WEB-INF\classes\jdbc.properties file, find the line
and replace the C:/Program Files/Zephyr part with the IP address of the NAS shared folder. For example:
|
Expand | ||||||
---|---|---|---|---|---|---|
| ||||||
Install the NFS (Network File System) server and client on CentOS 7. To do that: On the server side: 1. Install the required NFS packages by running the following command: 2. Create the Zephyrdata directory and allow access to it:
3. Start the following services and add them to the Boot Menu:
4. Open exports for editing –
– and type the following:
5. Start the NFS service by running the following command:
6. Add the NFS service override in the CentOS 7.0 firewall-cmd public zone service:
The NFS server is ready to work. On the client side: 1. Install the required NFS packages by running the following command:
2. Start the following services and add them to the Boot Menu:
3. Mount the NFS share on the client machine by running the command below:
4. Change the ZEPHYR_DATA path to the mounted path for all the nodes in the opt\Zephyr\tomcat\webapps\flex\WEB-INF\classes\jdbc.propeties file. For example:
5. You are connected to the NFS share. Now you can crosscheck it by running the following command:
|
4. Install Zephyr Enterprise on your nodes
Note |
---|
When installing Zephyr on your nodes, keep in mind the following:
|
Installation steps:
Install Zephyr Enterprise on nodes. The installation steps on the first node differ from the steps you perform on the other nodes.
1. To install Zephyr Enterprise on the first node:
Expand | ||
---|---|---|
| ||
Follow the installation steps for Windows.
|
Expand | ||
---|---|---|
| ||
Follow the installation steps for Linux.
|
2. After you install Zephyr, stop the node.
3. Install Zephyr Enterprise on another node. The way you do this depends on your operating system:
Expand | ||
---|---|---|
| ||
Open Command Prompt as an Admin and run the following command:
|
Expand | ||
---|---|---|
| ||
Open the terminal and run the following command:
|
4. Once the installation is complete, stop the node.
Info |
---|
You can use any number of nodes. If you want to add more nodes, repeat steps 3-4. |
5. After you install Zephyr Enterprise on all the nodes, you need to modify the following files:
Expand | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
In the file, find the following line:
and replace it with the following:
|
Expand | ||
---|---|---|
| ||
1. Find the line –
– and add the IPs of all the nodes instead of 127.0.0.1. For example:
2. Find the line –
– and replace it with an IP address that has an asterisk instead of the last component. For example:
|
Expand | ||
---|---|---|
| ||
1. In this file, find the line –
– and add the IP addresses of all the nodes instead of 127.0.0.1. For example:
2. Find the line –
– and replace it with an IP address that has an asterisk instead of the last component. For example:
|
Expand | ||
---|---|---|
| ||
Find the line –
– and replace websocket with sse:
|
Expand | ||
---|---|---|
| ||
In the file, before the web-app tag, add the tag <distributable />: |
6. On all the nodes, open the folder zephyr/tomcat/webapps/flex/WEB-INF/template, copy the filecluster.properties.tmpl, paste it to the folder zephyr/tomcat/webapps/flex/WEB-INF/classes and change the file name to cluster.properties.
7. Make the following changes in the cluster.properties file:
Remove the following lines:
Code Block |
---|
#unique identifier for the cluster node cluster.aws.enable=false HAZELCAST_PASSWORD=huser HAZELCAST_USERNAME=hpass |
Update the following information:
Code Block |
---|
cluster.key=node1 (this should be a unique name of the node) cluster.node.1.key=node1 cluster.node.1.url=172.17.18.141 (the IP address of node 1) cluster.node.count=4 cluster.node.2.key=node2 cluster.node.2.url= 172.17.18.157(the IP address of node 2) cluster.node.3.key=node3 cluster.node.3.url=172.17.18.223 (the IP address of node 3) cluster.node.4.key=node4 cluster.node.4.url=172.17.18.201 (the IP address of node 4) |
Expand | ||
---|---|---|
| ||
|
Note |
---|
The |
8. Start the first node where you installed Zephyr. Zephyr will start on it. After Zephyr is launched, the HAZELCAST_USERNAME and HAZELCAST_PASSWORD values will be generated in the zephyr/tomcat/webapps/flex/WEB-INF/classes/cluster.properties file.
9. Copy the HAZELCAST_USERNAME and HAZELCAST_PASSWORD values and paste them to the zephyr/tomcat/webapps/flex/WEB-INF/classes/cluster.properties file on the other nodes.
Now you can use your nodes.