Signed-off-by: Naarcha-AWS <naarcha@amazon.com>
This commit is contained in:
Naarcha-AWS 2022-05-03 09:56:54 -05:00
parent 6bb7bbd8c6
commit 0ba789a7c6
1 changed files with 13 additions and 7 deletions

View File

@ -9,13 +9,19 @@ The RPM installation provides everything you need to run OpenSearch inside a Lin
RPM supports CentOS 7 and 8, and Amazon Linux 2. If you have your own Java installation and set `JAVA_HOME` in the terminal, macOS works, as well.
There are two methods for installing OpenSearch on RPM. These steps assume that you already have `wget` installed.
There are two methods for installing OpenSearch on RPM.
## Manual method
1. Download the RPM package directly from the [OpenSearch downloads page](https://opensearch.org/downloads.html){:target='\_blank'}.
2. On your host, use `rpm -ivh` to install the package.
2. On your host, use `yum install` or `rpm -ivh` to install the package. We recommend using `yum install`, so that the required dependecies can be pulled from the YUM library.
```bash
yum install opensearch-{{site.opensearch_version}}-linux-x64.rpm
yum install opensearch-dashboards-{{site.opensearch_version}}-linux-x64.rpm
```
```bash
rpm -ivh opensearch-{{site.opensearch_version}}-linux-x64.rpm