Skip to content

Commit 651a29a

Browse files
authored
RS: Recommend different mount points for data & log files (#943)
* DOC-4315 RS: Recommend different mount points for data & log files * DOC-4315 Fixed symbolic link command examples
1 parent 0b8663d commit 651a29a

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

content/operate/rs/installing-upgrading/install/customize-install-directories.md

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,19 @@ When you install Redis Enterprise Software on Red Hat Enterprise Linux, you can
1414

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

17-
{{< note >}}
17+
## Considerations
18+
1819
- When you install with custom directories, the installation does not run as an RPM file.
20+
1921
- If a `redislabs` directory already exists in the path that you specify, the installation fails.
22+
2023
- All nodes in a cluster must be installed with the same file locations.
24+
2125
- Custom installation directories are not supported for databases using Auto Tiering.
22-
{{< /note >}}
26+
27+
- [Configure different mount points for data and log directories](#config-diff-data-log-dirs).
28+
29+
## Specify file locations
2330

2431
You can specify these file locations:
2532

@@ -52,7 +59,23 @@ To specify directories during [installation]({{< relref "/operate/rs/installing-
5259
```sh
5360
sudo ./install.sh --install-dir <path> --config-dir <path> --var-dir <path>
5461
```
55-
62+
63+
## Configure different mount points for data and log directories {#config-diff-data-log-dirs}
64+
65+
To configure different mount points for data and log directories, use symbolic links:
66+
67+
1. Create a symbolic link for the data directory:
68+
69+
```sh
70+
ln -s /var/opt/redislabs/data </path/to/data/mount/point>
71+
```
72+
73+
1. Create a symbolic link for the log directory:
74+
75+
```sh
76+
ln -s /var/opt/redislabs/log </path/to/log/mount/point>
77+
```
78+
5679
## Limitations
5780

5881
Several Redis Enterprise Software installation reference files are installed to the directory `/etc/opt/redislabs/` even if you use custom installation directories.

content/operate/rs/installing-upgrading/install/plan-deployment/_index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ Before installing Redis Enterprise Software, you need to:
3232
- Configure [cluster DNS]({{< relref "/operate/rs/networking/cluster-dns.md" >}}) so that cluster nodes can reach each other by DNS names.
3333
- 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" >}}).
3434

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

3739
After you finish planning your deployment, you can:

0 commit comments

Comments
 (0)