From e0fcafb50810faa945d5cb48b5543d87ede44c1c Mon Sep 17 00:00:00 2001 From: chaitan masannagari Date: Wed, 26 Nov 2025 21:49:20 +0530 Subject: [PATCH 1/3] REL-1223661: Included License changed steps in the relativity_server_cli_setup.md file --- docs/relativity_server_cli_setup.md | 74 +++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) diff --git a/docs/relativity_server_cli_setup.md b/docs/relativity_server_cli_setup.md index 4e0e7e5..5fbf20e 100644 --- a/docs/relativity_server_cli_setup.md +++ b/docs/relativity_server_cli_setup.md @@ -14,6 +14,80 @@ - Access to Elastic Stack, Primary SQL Server, and Secret Store (Whitelisted for Secret Store access. Please see [here](https://help.relativity.com/Server2024/Content/System_Guides/Secret_Store/Secret_Store.htm#Configuringclients) for information on whitelisting.) - The Server-bundle zip file has been downloaded and extracted to `C:\Server.Bundle.x.y.z' +### Steps for changing license + +If you need to change the Elasticsearch license from platinum to basic, follow these steps: + +1. **Check the current license status** + + Verify the current license type by accessing the Elasticsearch license endpoint. Replace `` with your Elasticsearch hostname or IP address: + + ``` + https://:9200/_license + ``` + + Example response for platinum license: + ```json + { + "license" : { + "status" : "active", + "uid" : "a523a4e6-9cec-4f97-a922-eadb0d7c8fda", + "type" : "platinum", + "issue_date" : "2025-04-16T00:00:00.000Z", + "issue_date_in_millis" : 1744761600000, + "expiry_date" : "2026-04-30T23:59:59.999Z", + "expiry_date_in_millis" : 1777593599999, + "max_nodes" : 72, + "max_resource_units" : null, + "issued_to" : "kCura Corporation (non-production environments)", + "issuer" : "API", + "start_date_in_millis" : 1744761600000 + } + } + ``` + +2. **Change license to basic using Kibana Dev Tools** + + Navigate to Kibana Dev Tools and execute the following API call: + + ``` + POST /_license/start_basic?acknowledge=true + ``` + + Expected response: + ```json + { + "acknowledged": true, + "basic_was_started": true + } + ``` + +3. **Verify the license change** + + Confirm that the license has been successfully changed to basic by checking the license status again: + + ``` + https://:9200/_license + ``` + + Example response for basic license: + ```json + { + "license" : { + "status" : "active", + "uid" : "3c332613-ef4f-4fcf-8505-982551476532", + "type" : "basic", + "issue_date" : "2025-11-26T09:22:27.879Z", + "issue_date_in_millis" : 1764148947879, + "max_nodes" : 1000, + "max_resource_units" : null, + "issued_to" : "elasticsearch", + "issuer" : "elasticsearch", + "start_date_in_millis" : -1 + } + } + ``` + ### Set up instructions 1. Open elevated command prompt/powershell. Run the below command. Select Environment Watch From fc371e459fdeb2d942106a4ea2afdc87a028da24 Mon Sep 17 00:00:00 2001 From: chaitan masannagari Date: Wed, 26 Nov 2025 21:58:17 +0530 Subject: [PATCH 2/3] REL-1223661: Updated the section name --- docs/relativity_server_cli_setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/relativity_server_cli_setup.md b/docs/relativity_server_cli_setup.md index 5fbf20e..830cfda 100644 --- a/docs/relativity_server_cli_setup.md +++ b/docs/relativity_server_cli_setup.md @@ -14,7 +14,7 @@ - Access to Elastic Stack, Primary SQL Server, and Secret Store (Whitelisted for Secret Store access. Please see [here](https://help.relativity.com/Server2024/Content/System_Guides/Secret_Store/Secret_Store.htm#Configuringclients) for information on whitelisting.) - The Server-bundle zip file has been downloaded and extracted to `C:\Server.Bundle.x.y.z' -### Steps for changing license +### Elasticsearch License Configuration If you need to change the Elasticsearch license from platinum to basic, follow these steps: From 6c83f91fac9830ce17c74ee686787ca397fce26c Mon Sep 17 00:00:00 2001 From: Deepankar Kalita Date: Tue, 2 Dec 2025 15:10:27 +0530 Subject: [PATCH 3/3] REL-1223661 updated the changes to datagrid_audit_setup file --- docs/datagrid_audit_setup.md | 77 +++++++++++++++++++++++++++++ docs/relativity_server_cli_setup.md | 74 --------------------------- 2 files changed, 77 insertions(+), 74 deletions(-) diff --git a/docs/datagrid_audit_setup.md b/docs/datagrid_audit_setup.md index 935472e..c74c668 100644 --- a/docs/datagrid_audit_setup.md +++ b/docs/datagrid_audit_setup.md @@ -78,6 +78,83 @@ Follow these steps to set up Data Grid Audit using the Relativity Server CLI. Al 5. Verify Audit Dashboard - navigate to the Audit tab in the Relativity environment and confirm that the dashboard and its data are loading correctly. +## Elasticsearch License Configuration + +Relativity Server customers are currently using the platinum license for authentication between Relativity and Elasticsearch for the Audit application. From Elasticsearch 8.x onwards, authentication will use API keys instead of the platinum license. + +If you need to change the Elasticsearch license from platinum to basic, follow these steps: + +1. **Check the current license status** + + Verify the current license type by accessing the Elasticsearch license endpoint. Replace `` with your Elasticsearch hostname or IP address: + + ``` + https://:9200/_license + ``` + + Example response for platinum license: + ```json + { + "license" : { + "status" : "active", + "uid" : "a523a4e6-9cec-4f97-a922-eadb0d7c8fda", + "type" : "platinum", + "issue_date" : "2025-04-16T00:00:00.000Z", + "issue_date_in_millis" : 1744761600000, + "expiry_date" : "2026-04-30T23:59:59.999Z", + "expiry_date_in_millis" : 1777593599999, + "max_nodes" : 72, + "max_resource_units" : null, + "issued_to" : "kCura Corporation (non-production environments)", + "issuer" : "API", + "start_date_in_millis" : 1744761600000 + } + } + ``` + +2. **Change license to basic using Kibana Dev Tools** + + Navigate to Kibana Dev Tools and execute the following API call: + + ``` + POST /_license/start_basic?acknowledge=true + ``` + + Expected response: + ```json + { + "acknowledged": true, + "basic_was_started": true + } + ``` + +3. **Verify the license change** + + Confirm that the license has been successfully changed to basic by checking the license status again: + + ``` + https://:9200/_license + ``` + + Example response for basic license: + ```json + { + "license" : { + "status" : "active", + "uid" : "3c332613-ef4f-4fcf-8505-982551476532", + "type" : "basic", + "issue_date" : "2025-11-26T09:22:27.879Z", + "issue_date_in_millis" : 1764148947879, + "max_nodes" : 1000, + "max_resource_units" : null, + "issued_to" : "elasticsearch", + "issuer" : "elasticsearch", + "start_date_in_millis" : -1 + } + } + ``` + + ## Next [Click here for the next step](install_environment_watch_monitoring_agents.md) \ No newline at end of file diff --git a/docs/relativity_server_cli_setup.md b/docs/relativity_server_cli_setup.md index 830cfda..4e0e7e5 100644 --- a/docs/relativity_server_cli_setup.md +++ b/docs/relativity_server_cli_setup.md @@ -14,80 +14,6 @@ - Access to Elastic Stack, Primary SQL Server, and Secret Store (Whitelisted for Secret Store access. Please see [here](https://help.relativity.com/Server2024/Content/System_Guides/Secret_Store/Secret_Store.htm#Configuringclients) for information on whitelisting.) - The Server-bundle zip file has been downloaded and extracted to `C:\Server.Bundle.x.y.z' -### Elasticsearch License Configuration - -If you need to change the Elasticsearch license from platinum to basic, follow these steps: - -1. **Check the current license status** - - Verify the current license type by accessing the Elasticsearch license endpoint. Replace `` with your Elasticsearch hostname or IP address: - - ``` - https://:9200/_license - ``` - - Example response for platinum license: - ```json - { - "license" : { - "status" : "active", - "uid" : "a523a4e6-9cec-4f97-a922-eadb0d7c8fda", - "type" : "platinum", - "issue_date" : "2025-04-16T00:00:00.000Z", - "issue_date_in_millis" : 1744761600000, - "expiry_date" : "2026-04-30T23:59:59.999Z", - "expiry_date_in_millis" : 1777593599999, - "max_nodes" : 72, - "max_resource_units" : null, - "issued_to" : "kCura Corporation (non-production environments)", - "issuer" : "API", - "start_date_in_millis" : 1744761600000 - } - } - ``` - -2. **Change license to basic using Kibana Dev Tools** - - Navigate to Kibana Dev Tools and execute the following API call: - - ``` - POST /_license/start_basic?acknowledge=true - ``` - - Expected response: - ```json - { - "acknowledged": true, - "basic_was_started": true - } - ``` - -3. **Verify the license change** - - Confirm that the license has been successfully changed to basic by checking the license status again: - - ``` - https://:9200/_license - ``` - - Example response for basic license: - ```json - { - "license" : { - "status" : "active", - "uid" : "3c332613-ef4f-4fcf-8505-982551476532", - "type" : "basic", - "issue_date" : "2025-11-26T09:22:27.879Z", - "issue_date_in_millis" : 1764148947879, - "max_nodes" : 1000, - "max_resource_units" : null, - "issued_to" : "elasticsearch", - "issuer" : "elasticsearch", - "start_date_in_millis" : -1 - } - } - ``` - ### Set up instructions 1. Open elevated command prompt/powershell. Run the below command. Select Environment Watch