Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,19 @@ When you install Redis Enterprise Software on Red Hat Enterprise Linux, you can

The files are installed in the `redislabs` directory located in the path that you specify.

{{< note >}}
## Considerations

- When you install with custom directories, the installation does not run as an RPM file.

- If a `redislabs` directory already exists in the path that you specify, the installation fails.

- All nodes in a cluster must be installed with the same file locations.

- Custom installation directories are not supported for databases using Auto Tiering.
{{< /note >}}

- [Configure different mount points for data and log directories](#config-diff-data-log-dirs).

## Specify file locations

You can specify these file locations:

Expand Down Expand Up @@ -52,7 +59,23 @@ To specify directories during [installation]({{< relref "/operate/rs/installing-
```sh
sudo ./install.sh --install-dir <path> --config-dir <path> --var-dir <path>
```


## Configure different mount points for data and log directories {#config-diff-data-log-dirs}

To configure different mount points for data and log directories, use symbolic links:

1. Create a symbolic link for the data directory:

```sh
ln -s </path/to/data/mount/point> /var/opt/redislabs/data
```

1. Create a symbolic link for the log directory:

```sh
ln -s </path/to/log/mount/point> /var/opt/redislabs/log
```

## Limitations

Several Redis Enterprise Software installation reference files are installed to the directory `/etc/opt/redislabs/` even if you use custom installation directories.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ Before installing Redis Enterprise Software, you need to:
- Configure [cluster DNS]({{< relref "/operate/rs/networking/cluster-dns.md" >}}) so that cluster nodes can reach each other by DNS names.
- By default, the installation process requires an internet connection to install dependencies and synchronize the operating system clock. To learn more, see [Offline installation]({{< relref "/operate/rs/installing-upgrading/install/offline-installation" >}}).

- [Configure different mount points for data and log directories]({{<relref "/operate/rs/installing-upgrading/install/customize-install-directories#config-diff-data-log-dirs">}}).

## Next steps

After you finish planning your deployment, you can:
Expand Down
Loading