From f0d8b7a0e6f6aa1c52676fee9cc606404276c192 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Tue, 19 Mar 2024 17:03:04 -0400 Subject: [PATCH 01/21] Update deb/rpm autorestart service after upgrade documentation Signed-off-by: Peter Zhu --- .../install-dashboards/debian.md | 37 +++++++++++++++++++ .../install-dashboards/rpm.md | 36 +++++++++++++++++- .../install-opensearch/debian.md | 10 ++++- .../install-opensearch/rpm.md | 8 +++- 4 files changed, 87 insertions(+), 4 deletions(-) diff --git a/_install-and-configure/install-dashboards/debian.md b/_install-and-configure/install-dashboards/debian.md index 4372049230..aca019c447 100644 --- a/_install-and-configure/install-dashboards/debian.md +++ b/_install-and-configure/install-dashboards/debian.md @@ -131,3 +131,40 @@ By default, OpenSearch Dashboards, like OpenSearch, binds to `localhost` when yo 1. From a web browser, navigate to OpenSearch Dashboards. The default port is 5601. 1. Log in with the default username `admin` and the default password `admin`. (For OpenSearch 2.12 and later, the password should be the custom admin password) 1. Visit [Getting started with OpenSearch Dashboards]({{site.url}}{{site.baseurl}}/dashboards/index/) to learn more. + + +## Upgrade to a newer version + +OpenSearch Dashboards instances installed using `dpkg` or `apt-get` can be easily upgraded to a newer version. + +### Manual upgrade with DPKG + +Download the Debian package for the desired upgrade version directly from the [OpenSearch Project downloads page](https://opensearch.org/downloads.html){:target='\_blank'}. + +Navigate to the directory containing the distribution and run the following command: +```bash +sudo dpkg -i opensearch-dashboards-{{site.opensearch_version}}-linux-x64.deb +``` +{% include copy.html %} + +### APT-GET + +To upgrade to the latest version of OpenSearch Dashboards using `apt-get`: +```bash +sudo apt-get upgrade opensearch-dashboards +``` +{% include copy.html %} + +You can also upgrade to a specific OpenSearch Dashboards version: +```bash +sudo apt-get upgrade opensearch-dashboards= +``` +{% include copy.html %} + +### Auto restart service after package upgrade ([2.13.0 or later](https://github.com/opensearch-project/opensearch-build/pull/4530)) + +To automatically restart OpenSearch Dashboards after a package upgrade, enable the `opensearch-dashboards.service` through systemd: +```bash +sudo systemctl enable opensearch-dashboards.service +``` +{% include copy.html %} diff --git a/_install-and-configure/install-dashboards/rpm.md b/_install-and-configure/install-dashboards/rpm.md index d250c4c1f3..3470e99b87 100644 --- a/_install-and-configure/install-dashboards/rpm.md +++ b/_install-and-configure/install-dashboards/rpm.md @@ -89,4 +89,38 @@ YUM, the primary package management tool for Red Hat-based operating systems, al 1. Once complete, you can run OpenSearch Dashboards. ```bash sudo systemctl start opensearch-dashboards - ``` \ No newline at end of file + ``` + +## Upgrade to a newer version + +OpenSearch Dashboards instances installed using RPM or YUM can be easily upgraded to a newer version. We recommend updating with YUM, but you can also upgrade using RPM. + + +### Manual upgrade with RPM + +Download the RPM package for the desired upgrade version directly from the [OpenSearch Project downloads page](https://opensearch.org/downloads.html){:target='\_blank'}. + +Navigate to the directory containing the distribution and run the following command: +```bash +rpm -Uvh opensearch-dashboards-{{site.opensearch_version}}-linux-x64.rpm +``` +{% include copy.html %} + +### YUM + +To upgrade to the latest version of OpenSearch Dashboards using YUM: +```bash +sudo yum update opensearch-dashboards +``` +{% include copy.html %} + + You can also upgrade to a specific OpenSearch Dashboards version: + ```bash + sudo yum update opensearch-dashboards- + ``` + {% include copy.html %} + +### Auto restart service after package upgrade + +At the moment, OpenSearch Dashboards RPM package does not support automatically restart service after a package upgrade. + diff --git a/_install-and-configure/install-opensearch/debian.md b/_install-and-configure/install-opensearch/debian.md index 6f9167a12c..bf76b9e2bb 100644 --- a/_install-and-configure/install-opensearch/debian.md +++ b/_install-and-configure/install-opensearch/debian.md @@ -528,7 +528,7 @@ OpenSearch instances installed using `dpkg` or `apt-get` can be easily upgraded ### Manual upgrade with DPKG -Download the Debian package for the desired upgrade version directly from the [OpenSearch downloads page](https://opensearch.org/downloads.html){:target='\_blank'}. +Download the Debian package for the desired upgrade version directly from the [OpenSearch Project downloads page](https://opensearch.org/downloads.html){:target='\_blank'}. Navigate to the directory containing the distribution and run the following command: ```bash @@ -550,6 +550,14 @@ sudo apt-get upgrade opensearch= ``` {% include copy.html %} +### Auto restart service after package upgrade ([2.13.0 or later](https://github.com/opensearch-project/opensearch-build/pull/4530)) + +To automatically restart OpenSearch after a package upgrade, enable the `opensearch.service` through systemd: +```bash +sudo systemctl enable opensearch.service +``` +{% include copy.html %} + ## Related links - [OpenSearch configuration]({{site.url}}{{site.baseurl}}/install-and-configure/configuring-opensearch/) diff --git a/_install-and-configure/install-opensearch/rpm.md b/_install-and-configure/install-opensearch/rpm.md index ac3ff4e0e9..75dc1d8fca 100644 --- a/_install-and-configure/install-opensearch/rpm.md +++ b/_install-and-configure/install-opensearch/rpm.md @@ -500,7 +500,7 @@ OpenSearch instances installed using RPM or YUM can be easily upgraded to a newe ### Manual upgrade with RPM -Download the RPM package for the desired upgrade version directly from the [OpenSearch downloads page](https://opensearch.org/downloads.html){:target='\_blank'}. +Download the RPM package for the desired upgrade version directly from the [OpenSearch Project downloads page](https://opensearch.org/downloads.html){:target='\_blank'}. Navigate to the directory containing the distribution and run the following command: ```bash @@ -512,7 +512,7 @@ rpm -Uvh opensearch-{{site.opensearch_version}}-linux-x64.rpm To upgrade to the latest version of OpenSearch using YUM: ```bash -sudo yum update +sudo yum update opensearch ``` {% include copy.html %} @@ -522,6 +522,10 @@ sudo yum update ``` {% include copy.html %} +### Auto restart service after package upgrade + +At the moment, OpenSearch RPM package does not support automatically restart service after a package upgrade. + ## Related links - [OpenSearch configuration]({{site.url}}{{site.baseurl}}/install-and-configure/configuring-opensearch/) From 7262bd5d0aae55c768b91b99502df766d5b80bd5 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Tue, 19 Mar 2024 17:58:44 -0400 Subject: [PATCH 02/21] Update _install-and-configure/install-dashboards/debian.md Signed-off-by: Peter Zhu Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: Peter Zhu --- _install-and-configure/install-dashboards/debian.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_install-and-configure/install-dashboards/debian.md b/_install-and-configure/install-dashboards/debian.md index aca019c447..3b9fecbb51 100644 --- a/_install-and-configure/install-dashboards/debian.md +++ b/_install-and-configure/install-dashboards/debian.md @@ -142,6 +142,7 @@ OpenSearch Dashboards instances installed using `dpkg` or `apt-get` can be easil Download the Debian package for the desired upgrade version directly from the [OpenSearch Project downloads page](https://opensearch.org/downloads.html){:target='\_blank'}. Navigate to the directory containing the distribution and run the following command: + ```bash sudo dpkg -i opensearch-dashboards-{{site.opensearch_version}}-linux-x64.deb ``` From 214b9ad1623f4a30852fc7610db0ad711b976ac1 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Tue, 19 Mar 2024 17:58:58 -0400 Subject: [PATCH 03/21] Update _install-and-configure/install-dashboards/debian.md Signed-off-by: Peter Zhu Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: Peter Zhu --- _install-and-configure/install-dashboards/debian.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_install-and-configure/install-dashboards/debian.md b/_install-and-configure/install-dashboards/debian.md index 3b9fecbb51..583470cca8 100644 --- a/_install-and-configure/install-dashboards/debian.md +++ b/_install-and-configure/install-dashboards/debian.md @@ -150,7 +150,8 @@ sudo dpkg -i opensearch-dashboards-{{site.opensearch_version}}-linux-x64.deb ### APT-GET -To upgrade to the latest version of OpenSearch Dashboards using `apt-get`: +To upgrade to the latest version of OpenSearch Dashboards using `apt-get`, run the following command: + ```bash sudo apt-get upgrade opensearch-dashboards ``` From a0e5802523b0562c027326c74a28dcade6a92925 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Tue, 19 Mar 2024 17:59:21 -0400 Subject: [PATCH 04/21] Update _install-and-configure/install-dashboards/debian.md Signed-off-by: Peter Zhu Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: Peter Zhu --- _install-and-configure/install-dashboards/debian.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_install-and-configure/install-dashboards/debian.md b/_install-and-configure/install-dashboards/debian.md index 583470cca8..cd41f14e39 100644 --- a/_install-and-configure/install-dashboards/debian.md +++ b/_install-and-configure/install-dashboards/debian.md @@ -157,7 +157,8 @@ sudo apt-get upgrade opensearch-dashboards ``` {% include copy.html %} -You can also upgrade to a specific OpenSearch Dashboards version: +You can also upgrade to a specific OpenSearch Dashboards version by providing the version number: + ```bash sudo apt-get upgrade opensearch-dashboards= ``` From 91fe393d6ac8f93b70fdd27aec10048892dd9f28 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Tue, 19 Mar 2024 17:59:29 -0400 Subject: [PATCH 05/21] Update _install-and-configure/install-dashboards/debian.md Signed-off-by: Peter Zhu Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: Peter Zhu --- _install-and-configure/install-dashboards/debian.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_install-and-configure/install-dashboards/debian.md b/_install-and-configure/install-dashboards/debian.md index cd41f14e39..abfa5df4eb 100644 --- a/_install-and-configure/install-dashboards/debian.md +++ b/_install-and-configure/install-dashboards/debian.md @@ -166,7 +166,8 @@ sudo apt-get upgrade opensearch-dashboards= ### Auto restart service after package upgrade ([2.13.0 or later](https://github.com/opensearch-project/opensearch-build/pull/4530)) -To automatically restart OpenSearch Dashboards after a package upgrade, enable the `opensearch-dashboards.service` through systemd: +To automatically restart OpenSearch Dashboards after a package upgrade, enable the `opensearch-dashboards.service` through `systemd`: + ```bash sudo systemctl enable opensearch-dashboards.service ``` From f75f58f770a841d9e7bffb96054345c28a2b4596 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Tue, 19 Mar 2024 17:59:45 -0400 Subject: [PATCH 06/21] Update _install-and-configure/install-dashboards/rpm.md Signed-off-by: Peter Zhu Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: Peter Zhu --- _install-and-configure/install-dashboards/rpm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/install-dashboards/rpm.md b/_install-and-configure/install-dashboards/rpm.md index 3470e99b87..6dadcc824d 100644 --- a/_install-and-configure/install-dashboards/rpm.md +++ b/_install-and-configure/install-dashboards/rpm.md @@ -93,7 +93,7 @@ YUM, the primary package management tool for Red Hat-based operating systems, al ## Upgrade to a newer version -OpenSearch Dashboards instances installed using RPM or YUM can be easily upgraded to a newer version. We recommend updating with YUM, but you can also upgrade using RPM. +OpenSearch Dashboards instances installed using RPM or YUM can be easily upgraded to a newer version. We recommend upgrading using YUM, but you can also choose RPM. ### Manual upgrade with RPM From b38a6bebb8e841e50fccc22bc2f09981e135d2d1 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Tue, 19 Mar 2024 17:59:54 -0400 Subject: [PATCH 07/21] Update _install-and-configure/install-dashboards/rpm.md Signed-off-by: Peter Zhu Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: Peter Zhu --- _install-and-configure/install-dashboards/rpm.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_install-and-configure/install-dashboards/rpm.md b/_install-and-configure/install-dashboards/rpm.md index 6dadcc824d..e42e0ad748 100644 --- a/_install-and-configure/install-dashboards/rpm.md +++ b/_install-and-configure/install-dashboards/rpm.md @@ -101,6 +101,7 @@ OpenSearch Dashboards instances installed using RPM or YUM can be easily upgrade Download the RPM package for the desired upgrade version directly from the [OpenSearch Project downloads page](https://opensearch.org/downloads.html){:target='\_blank'}. Navigate to the directory containing the distribution and run the following command: + ```bash rpm -Uvh opensearch-dashboards-{{site.opensearch_version}}-linux-x64.rpm ``` From 88e95d33ed74d7c3cb8d6ab042f67b2583b51978 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Tue, 19 Mar 2024 18:00:01 -0400 Subject: [PATCH 08/21] Update _install-and-configure/install-dashboards/rpm.md Signed-off-by: Peter Zhu Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: Peter Zhu --- _install-and-configure/install-dashboards/rpm.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_install-and-configure/install-dashboards/rpm.md b/_install-and-configure/install-dashboards/rpm.md index e42e0ad748..4580b0bfe0 100644 --- a/_install-and-configure/install-dashboards/rpm.md +++ b/_install-and-configure/install-dashboards/rpm.md @@ -109,7 +109,8 @@ rpm -Uvh opensearch-dashboards-{{site.opensearch_version}}-linux-x64.rpm ### YUM -To upgrade to the latest version of OpenSearch Dashboards using YUM: +To upgrade to the latest version of OpenSearch Dashboards using YUM, run the following command: + ```bash sudo yum update opensearch-dashboards ``` From f836e67475da674045dc212e27e204142e5e81a5 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Tue, 19 Mar 2024 18:00:12 -0400 Subject: [PATCH 09/21] Update _install-and-configure/install-dashboards/rpm.md Signed-off-by: Peter Zhu Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: Peter Zhu --- _install-and-configure/install-dashboards/rpm.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_install-and-configure/install-dashboards/rpm.md b/_install-and-configure/install-dashboards/rpm.md index 4580b0bfe0..92ecf11204 100644 --- a/_install-and-configure/install-dashboards/rpm.md +++ b/_install-and-configure/install-dashboards/rpm.md @@ -116,7 +116,8 @@ sudo yum update opensearch-dashboards ``` {% include copy.html %} - You can also upgrade to a specific OpenSearch Dashboards version: + You can also upgrade to a specific OpenSearch Dashboards version by providing the version number: + ```bash sudo yum update opensearch-dashboards- ``` From 6750f6b2c82bf14b6801e075ec4789abf2529aa0 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Tue, 19 Mar 2024 18:00:27 -0400 Subject: [PATCH 10/21] Update _install-and-configure/install-dashboards/rpm.md Signed-off-by: Peter Zhu Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: Peter Zhu --- _install-and-configure/install-dashboards/rpm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/install-dashboards/rpm.md b/_install-and-configure/install-dashboards/rpm.md index 92ecf11204..6788203ec8 100644 --- a/_install-and-configure/install-dashboards/rpm.md +++ b/_install-and-configure/install-dashboards/rpm.md @@ -125,5 +125,5 @@ sudo yum update opensearch-dashboards ### Auto restart service after package upgrade -At the moment, OpenSearch Dashboards RPM package does not support automatically restart service after a package upgrade. +Currently, the OpenSearch Dashboards RPM package does not support automatically restarting the service after a package upgrade. From 7aa4024870517ee9eeb0eba7eb751195847aa3cb Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Tue, 19 Mar 2024 18:00:33 -0400 Subject: [PATCH 11/21] Update _install-and-configure/install-opensearch/debian.md Signed-off-by: Peter Zhu Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: Peter Zhu --- _install-and-configure/install-opensearch/debian.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_install-and-configure/install-opensearch/debian.md b/_install-and-configure/install-opensearch/debian.md index bf76b9e2bb..052da3e050 100644 --- a/_install-and-configure/install-opensearch/debian.md +++ b/_install-and-configure/install-opensearch/debian.md @@ -552,7 +552,8 @@ sudo apt-get upgrade opensearch= ### Auto restart service after package upgrade ([2.13.0 or later](https://github.com/opensearch-project/opensearch-build/pull/4530)) -To automatically restart OpenSearch after a package upgrade, enable the `opensearch.service` through systemd: +To automatically restart OpenSearch after a package upgrade, enable the `opensearch.service` through `systemd`: + ```bash sudo systemctl enable opensearch.service ``` From c011daff8fdd713a284d854e6969eb5b64494043 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Tue, 19 Mar 2024 18:00:41 -0400 Subject: [PATCH 12/21] Update _install-and-configure/install-opensearch/rpm.md Signed-off-by: Peter Zhu Co-authored-by: kolchfa-aws <105444904+kolchfa-aws@users.noreply.github.com> Signed-off-by: Peter Zhu --- _install-and-configure/install-opensearch/rpm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/install-opensearch/rpm.md b/_install-and-configure/install-opensearch/rpm.md index 75dc1d8fca..b07ee709ad 100644 --- a/_install-and-configure/install-opensearch/rpm.md +++ b/_install-and-configure/install-opensearch/rpm.md @@ -524,7 +524,7 @@ sudo yum update opensearch ### Auto restart service after package upgrade -At the moment, OpenSearch RPM package does not support automatically restart service after a package upgrade. +Currently, the OpenSearch RPM package does not support automatically restarting the service after a package upgrade. ## Related links From 6bb56f008c128b92537e2b64abe78595c9bab7cd Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Wed, 20 Mar 2024 14:50:06 -0400 Subject: [PATCH 13/21] Update _install-and-configure/install-dashboards/debian.md Signed-off-by: Peter Zhu Co-authored-by: Nathan Bower Signed-off-by: Peter Zhu --- _install-and-configure/install-dashboards/debian.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/install-dashboards/debian.md b/_install-and-configure/install-dashboards/debian.md index abfa5df4eb..e28c249508 100644 --- a/_install-and-configure/install-dashboards/debian.md +++ b/_install-and-configure/install-dashboards/debian.md @@ -164,7 +164,7 @@ sudo apt-get upgrade opensearch-dashboards= ``` {% include copy.html %} -### Auto restart service after package upgrade ([2.13.0 or later](https://github.com/opensearch-project/opensearch-build/pull/4530)) +### Automatically restart the service after a package upgrade ([2.13.0 or later](https://github.com/opensearch-project/opensearch-build/pull/4530)) To automatically restart OpenSearch Dashboards after a package upgrade, enable the `opensearch-dashboards.service` through `systemd`: From 22301d0ddec7805d9437a0457e9bac48b6835fd5 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Wed, 20 Mar 2024 14:51:46 -0400 Subject: [PATCH 14/21] Update _install-and-configure/install-dashboards/rpm.md Signed-off-by: Peter Zhu Co-authored-by: Nathan Bower Signed-off-by: Peter Zhu --- _install-and-configure/install-dashboards/rpm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/install-dashboards/rpm.md b/_install-and-configure/install-dashboards/rpm.md index 6788203ec8..1555ee81aa 100644 --- a/_install-and-configure/install-dashboards/rpm.md +++ b/_install-and-configure/install-dashboards/rpm.md @@ -93,7 +93,7 @@ YUM, the primary package management tool for Red Hat-based operating systems, al ## Upgrade to a newer version -OpenSearch Dashboards instances installed using RPM or YUM can be easily upgraded to a newer version. We recommend upgrading using YUM, but you can also choose RPM. +OpenSearch Dashboards instances installed using RPM or YUM can be easily upgraded to a newer version. We recommend using YUM, but you can also choose RPM. ### Manual upgrade with RPM From 2a3457a32b722ac1bc7a0e0d952707f13d27ff0e Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Wed, 20 Mar 2024 14:51:58 -0400 Subject: [PATCH 15/21] Update _install-and-configure/install-dashboards/rpm.md Signed-off-by: Peter Zhu Co-authored-by: Nathan Bower Signed-off-by: Peter Zhu --- _install-and-configure/install-dashboards/rpm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/install-dashboards/rpm.md b/_install-and-configure/install-dashboards/rpm.md index 1555ee81aa..1631e9c3fa 100644 --- a/_install-and-configure/install-dashboards/rpm.md +++ b/_install-and-configure/install-dashboards/rpm.md @@ -116,7 +116,7 @@ sudo yum update opensearch-dashboards ``` {% include copy.html %} - You can also upgrade to a specific OpenSearch Dashboards version by providing the version number: +You can also upgrade to a specific OpenSearch Dashboards version by providing the version number: ```bash sudo yum update opensearch-dashboards- From 845a3fb90ccc2fe4c6225a0e0dc9ec3690e99a2c Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Wed, 20 Mar 2024 14:52:07 -0400 Subject: [PATCH 16/21] Update _install-and-configure/install-dashboards/rpm.md Signed-off-by: Peter Zhu Co-authored-by: Nathan Bower Signed-off-by: Peter Zhu --- _install-and-configure/install-dashboards/rpm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/install-dashboards/rpm.md b/_install-and-configure/install-dashboards/rpm.md index 1631e9c3fa..db45bfbc7e 100644 --- a/_install-and-configure/install-dashboards/rpm.md +++ b/_install-and-configure/install-dashboards/rpm.md @@ -123,7 +123,7 @@ You can also upgrade to a specific OpenSearch Dashboards version by providing th ``` {% include copy.html %} -### Auto restart service after package upgrade +### Automatically restart the service after a package upgrade Currently, the OpenSearch Dashboards RPM package does not support automatically restarting the service after a package upgrade. From 2547e097b53139afdee9d6d045fe215e4145269a Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Wed, 20 Mar 2024 14:52:26 -0400 Subject: [PATCH 17/21] Update _install-and-configure/install-dashboards/rpm.md Signed-off-by: Peter Zhu Co-authored-by: Nathan Bower Signed-off-by: Peter Zhu --- _install-and-configure/install-dashboards/rpm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/install-dashboards/rpm.md b/_install-and-configure/install-dashboards/rpm.md index db45bfbc7e..cc5974c91e 100644 --- a/_install-and-configure/install-dashboards/rpm.md +++ b/_install-and-configure/install-dashboards/rpm.md @@ -125,5 +125,5 @@ You can also upgrade to a specific OpenSearch Dashboards version by providing th ### Automatically restart the service after a package upgrade -Currently, the OpenSearch Dashboards RPM package does not support automatically restarting the service after a package upgrade. +The OpenSearch Dashboards RPM package does not currently support automatically restarting the service after a package upgrade. From 2d9e075ce26fde6693ec0af5e43c72be5895e437 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Wed, 20 Mar 2024 14:52:36 -0400 Subject: [PATCH 18/21] Update _install-and-configure/install-opensearch/debian.md Signed-off-by: Peter Zhu Co-authored-by: Nathan Bower Signed-off-by: Peter Zhu --- _install-and-configure/install-opensearch/debian.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/install-opensearch/debian.md b/_install-and-configure/install-opensearch/debian.md index 052da3e050..713b771f1a 100644 --- a/_install-and-configure/install-opensearch/debian.md +++ b/_install-and-configure/install-opensearch/debian.md @@ -550,7 +550,7 @@ sudo apt-get upgrade opensearch= ``` {% include copy.html %} -### Auto restart service after package upgrade ([2.13.0 or later](https://github.com/opensearch-project/opensearch-build/pull/4530)) +### Automatically restart the service after a package upgrade ([2.13.0 or later](https://github.com/opensearch-project/opensearch-build/pull/4530)) To automatically restart OpenSearch after a package upgrade, enable the `opensearch.service` through `systemd`: From 5f05c8d5c17bd482e31468965077785855933319 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Wed, 20 Mar 2024 14:53:00 -0400 Subject: [PATCH 19/21] Update _install-and-configure/install-opensearch/rpm.md Signed-off-by: Peter Zhu Co-authored-by: Nathan Bower Signed-off-by: Peter Zhu --- _install-and-configure/install-opensearch/rpm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/install-opensearch/rpm.md b/_install-and-configure/install-opensearch/rpm.md index b07ee709ad..8bae38c16f 100644 --- a/_install-and-configure/install-opensearch/rpm.md +++ b/_install-and-configure/install-opensearch/rpm.md @@ -522,7 +522,7 @@ sudo yum update opensearch ``` {% include copy.html %} -### Auto restart service after package upgrade +### Automatically restart the service after a package upgrade Currently, the OpenSearch RPM package does not support automatically restarting the service after a package upgrade. From 966b30fc09a236ac0e9629734c6ac647fffe7266 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Wed, 20 Mar 2024 14:53:07 -0400 Subject: [PATCH 20/21] Update _install-and-configure/install-opensearch/rpm.md Signed-off-by: Peter Zhu Co-authored-by: Nathan Bower Signed-off-by: Peter Zhu --- _install-and-configure/install-opensearch/rpm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_install-and-configure/install-opensearch/rpm.md b/_install-and-configure/install-opensearch/rpm.md index 8bae38c16f..a22ea96d61 100644 --- a/_install-and-configure/install-opensearch/rpm.md +++ b/_install-and-configure/install-opensearch/rpm.md @@ -524,7 +524,7 @@ sudo yum update opensearch ### Automatically restart the service after a package upgrade -Currently, the OpenSearch RPM package does not support automatically restarting the service after a package upgrade. +The OpenSearch RPM package does not currently support automatically restarting the service after a package upgrade. ## Related links From 9944ced656b39c4d9656a02fd98cb2dd35c88b61 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Wed, 20 Mar 2024 14:54:52 -0400 Subject: [PATCH 21/21] Remove link Signed-off-by: Peter Zhu --- _install-and-configure/install-dashboards/debian.md | 2 +- _install-and-configure/install-opensearch/debian.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/_install-and-configure/install-dashboards/debian.md b/_install-and-configure/install-dashboards/debian.md index e28c249508..73aba46cd4 100644 --- a/_install-and-configure/install-dashboards/debian.md +++ b/_install-and-configure/install-dashboards/debian.md @@ -164,7 +164,7 @@ sudo apt-get upgrade opensearch-dashboards= ``` {% include copy.html %} -### Automatically restart the service after a package upgrade ([2.13.0 or later](https://github.com/opensearch-project/opensearch-build/pull/4530)) +### Automatically restart the service after a package upgrade (2.13.0+) To automatically restart OpenSearch Dashboards after a package upgrade, enable the `opensearch-dashboards.service` through `systemd`: diff --git a/_install-and-configure/install-opensearch/debian.md b/_install-and-configure/install-opensearch/debian.md index 713b771f1a..72ae05d87c 100644 --- a/_install-and-configure/install-opensearch/debian.md +++ b/_install-and-configure/install-opensearch/debian.md @@ -550,7 +550,7 @@ sudo apt-get upgrade opensearch= ``` {% include copy.html %} -### Automatically restart the service after a package upgrade ([2.13.0 or later](https://github.com/opensearch-project/opensearch-build/pull/4530)) +### Automatically restart the service after a package upgrade (2.13.0+) To automatically restart OpenSearch after a package upgrade, enable the `opensearch.service` through `systemd`: