parent
6bb7bbd8c6
commit
0ba789a7c6
|
@ -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.
|
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
|
## Manual method
|
||||||
|
|
||||||
|
|
||||||
1. Download the RPM package directly from the [OpenSearch downloads page](https://opensearch.org/downloads.html){:target='\_blank'}.
|
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
|
```bash
|
||||||
rpm -ivh opensearch-{{site.opensearch_version}}-linux-x64.rpm
|
rpm -ivh opensearch-{{site.opensearch_version}}-linux-x64.rpm
|
||||||
|
|
Loading…
Reference in New Issue