Panel | ||||||
---|---|---|---|---|---|---|
| ||||||
Starting October 11, 2024 (Zephyr Enterprise 8.2), the Zephyr Enterprise documentation moved from its current location on Atlassian to a dedicated, standalone Zephyr Enterprise documentation page. Please see: https://support.smartbear.com/zephyr-enterprise/docs/en/zephyr-enterprise/zephyr-installation-and-upgrade-guides/zephyr-on-premise-production-installation/set-up-zephyr-data-center-cluster/2--install-and-configure-elasticsearch.html |
To be able to work with Zephyr Data Center, you need to install and configure Elasticsearch -- a search and analytics engine -- on a separate node. Depending on the number of concurrent users who will work with the Data Center, you may need to set up one Elasticsearch node or a cluster of nodes (see Recommended Configurations).
Note |
---|
|
To install Elasticsearch on Windows (on a single node or
...
cluster nodes):
Download Elasticsearch 7.16.2 or Elasticsearch 8.6.2 (the ZIP archive).
...
3. Configure the {elasticsearch}\config\elasticsearch.yml
file:
For more details on the configuration for-
Single node- refer to the details in ES 8.6.2 or ES 7.16.2
Cluster nodes - refer to the details in ES 8.6.2 or ES 7.16.2
4. Start the service by running the {elasticsearch}\bin\elasticsearch.bat
file.
To install Elasticsearch on Linux (on a single node or on cluster nodes):
1.Download Elasticsearch 7.16.2 or Elasticsearch 8.6.2 (the RPM archive), or run the following command in the Linux command prompt:
For 7.16.2 use the link- wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.16.2-x86_64.rpm
For 8.6.2 use the link- wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.6.2-x86_64.rpm
2. In the Linux command prompt, run one of the following commands to install Elasticsearch:
For 7.16.2 - sudo rpm -ivh elasticsearch-7.16.2-x86_64.rpm
sudo yum localinstall elasticsearch-7.16.2-x86_64.rpm
For 8.6.2 - sudo rpm -ivh elasticsearch-8.6.2-x86_64.rpm
sudo yum localinstall elasticsearch-8.6.2-x86_64.rpm
3. Configure the etc\elasticsearch\elasticsearch.yml
file:
For more details on configuration for-
Single node- refer to the details in ES 8.6.2 or ES 7.16.2
Cluster nodes - refer to the details in ES 8.6.2 or ES 7.16.2
4. Start Elasticsearch. The way you start and stop it depends on whether your system uses SysV init or systemd.
...