Merge pull request #1 from spara69/fix-bash-export-command-snippet

fix bash export command syntax
This commit is contained in:
Sivanandhan Paramasivam 2021-11-11 13:15:53 -07:00 committed by GitHub Enterprise
commit 5d9a8da129
1 changed files with 4 additions and 4 deletions

View File

@ -223,25 +223,25 @@ Check [Upgrade paths]({{site.url}}{{site.baseurl}}/upgrade-to/upgrade-to/#upgrad
- `ES_HOME` - Path to the existing Elasticsearch installation home. - `ES_HOME` - Path to the existing Elasticsearch installation home.
```bash ```bash
export ES_HOME = /home/workspace/upgrade-demo/node1/elasticsearch-7.10.2 export ES_HOME=/home/workspace/upgrade-demo/node1/elasticsearch-7.10.2
``` ```
- `ES_PATH_CONF` - Path to the existing Elasticsearch config directory. - `ES_PATH_CONF` - Path to the existing Elasticsearch config directory.
```bash ```bash
export ES_PATH_CONF = /home/workspace/upgrade-demo/node1/os-config export ES_PATH_CONF=/home/workspace/upgrade-demo/node1/os-config
``` ```
- `OPENSEARCH_HOME` - Path to the OpenSearch installation home. - `OPENSEARCH_HOME` - Path to the OpenSearch installation home.
```bash ```bash
export OPENSEARCH_HOME = /home/workspace/upgrade-demo/node1/opensearch-1.0.0 export OPENSEARCH_HOME=/home/workspace/upgrade-demo/node1/opensearch-1.0.0
``` ```
- `OPENSEARCH_PATH_CONF` - Path to the OpenSearch config directory. - `OPENSEARCH_PATH_CONF` - Path to the OpenSearch config directory.
```bash ```bash
export OPENSEARCH_PATH_CONF = /home/workspace/upgrade-demo/node1/opensearch-config export OPENSEARCH_PATH_CONF=/home/workspace/upgrade-demo/node1/opensearch-config
``` ```
1. The `opensearch-upgrade` tool is in the `bin` directory of the distribution. Run the following command from the distribution home: 1. The `opensearch-upgrade` tool is in the `bin` directory of the distribution. Run the following command from the distribution home: