From f788eeb2cf047a12e692618e51f03828873884d5 Mon Sep 17 00:00:00 2001 From: Andy Stark Date: Fri, 13 Jun 2025 09:40:07 +0100 Subject: [PATCH 1/2] DOC-5337 added warning about /var mounted with noexec --- .../installation/install-vm.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/content/integrate/redis-data-integration/installation/install-vm.md b/content/integrate/redis-data-integration/installation/install-vm.md index eb0e417fa9..daa660fc04 100644 --- a/content/integrate/redis-data-integration/installation/install-vm.md +++ b/content/integrate/redis-data-integration/installation/install-vm.md @@ -134,7 +134,20 @@ sudo ufw reload ## Installation steps -Follow the steps below for each of your VMs: +Follow the steps below for each of your VMs. + +{{< note >}}RDI installs executable code in the `/var` partition, so you must +ensure it is mounted without the `noexec` option. Use the following command to +find any partitions mounted with the `noexec` option: + +```bash +mount | grep noexec +``` + +If your `/var` partition is listed in the output from this command, you must remount +it without the `noexec` option. See +[Using the mount command](https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/5/html/deployment_guide/chap-using_the_mount_command) in the Red Hat documentation to learn how to remount a partition. +{{< /note >}} 1. Download the RDI installer from the [Redis download center](https://redis-enterprise-software-downloads.s3.amazonaws.com/redis-di/rdi-installation-{{< rdi-version >}}.tar.gz) From 634688e2f823923bfa8ee5860a490b2317cca6c1 Mon Sep 17 00:00:00 2001 From: andy-stark-redis <164213578+andy-stark-redis@users.noreply.github.com> Date: Fri, 13 Jun 2025 10:38:36 +0100 Subject: [PATCH 2/2] Update content/integrate/redis-data-integration/installation/install-vm.md Co-authored-by: Yaron Parasol --- .../integrate/redis-data-integration/installation/install-vm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/integrate/redis-data-integration/installation/install-vm.md b/content/integrate/redis-data-integration/installation/install-vm.md index daa660fc04..2d94d3db38 100644 --- a/content/integrate/redis-data-integration/installation/install-vm.md +++ b/content/integrate/redis-data-integration/installation/install-vm.md @@ -136,7 +136,7 @@ sudo ufw reload Follow the steps below for each of your VMs. -{{< note >}}RDI installs executable code in the `/var` partition, so you must +{{< note >}}RDI installs executables by default in the `/var` partition, so you must ensure it is mounted without the `noexec` option. Use the following command to find any partitions mounted with the `noexec` option: