You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/operate/rs/installing-upgrading/install/install-script.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -24,3 +24,5 @@ The following options are supported:
24
24
| <nobr>`--var-dir <dir>`</nobr> | Var directory used for installation *(new installs only)* <br/>See [Customize install locations]({{< relref "/operate/rs/installing-upgrading/install/customize-install-directories" >}})|
25
25
| <nobr>`--os-user <user>`| Operating system user account associated with install; default: `redislabs`<br/>See [Customize user and group]({{< relref "/operate/rs/installing-upgrading/install/customize-user-and-group" >}}) *(new installs only)*|
26
26
|<nobr>`--os-group <group>`| Operating system group associated with install; default: `redislabs`<br/>See [Customize user and group]({{< relref "/operate/rs/installing-upgrading/install/customize-user-and-group" >}}) *(new installs only)*|
27
+
|`--skip-dns-port-verification`| Skip DNS port verification during installation |
28
+
| <nobr>`--skip-updating-env-path`</nobr> | Skip adding paths related to Redis Enterprise Software to root's PATH environment variable<br/>See [Manage install questions]({{< relref "/operate/rs/installing-upgrading/install/manage-installation-questions" >}}) |
Copy file name to clipboardExpand all lines: content/operate/rs/installing-upgrading/install/manage-installation-questions.md
+18-5Lines changed: 18 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,9 @@ Several questions appear during installation:
58
58
- **User already exists** - `The user 'redislabs' already exists, which may lead to problems if it wasn't configured correctly. Would you like to proceed with the installation? (Y/N)?`
59
59
60
60
- **Group already exists** - `The group 'redislabs' already exists, which may lead to problems if it wasn't configured correctly. Would you like to proceed with the installation? (Y/N)?`
To perform a silent (or automated) install, answer the questions when you start the [install]({{< relref "/operate/rs/installing-upgrading/install/install-on-linux">}}).
@@ -77,9 +79,20 @@ Use an answer file to manage your response:
77
79
78
80
1. Create a text file to serve as an answer file.
79
81
80
-
The answer file can contain any of the parametersfor the installation questions and indicate the answer for each question with `yes` or `no`.
82
+
The answer file can contain any of the following installation question parameters. If a parameter is not included inthe file, the installation script will ask for your answer.
81
83
82
-
For example:
84
+
| Parameter | Values | Description |
85
+
|-----------|--------|-------------|
86
+
|`firewall`|`yes`<br />`no`| Configure firewall and open required Redis ports. |
87
+
|`ignore_existing_osuser_osgroup`|`yes`<br />`no`| Proceed if redislabs user/group already exists. |
88
+
|`ignore_master_version`|`yes`<br />`no`| Continue the upgrade even if the primary node isn't upgraded. If `no`, stops installation if the primary node hasn't been upgraded. |
89
+
|`ignore_swap`|`yes`<br />`no`| Continue even if swap is enabled. If `no`, stops installation if swap is enabled. |
|`rlcheck`|`yes`<br />`no`| Run `rlcheck` after installation to validate the system. |
92
+
|`skip_updating_env_path`|`yes`<br />`no`| Skip adding Redis Enterprise Software paths to the PATH environment variable. |
93
+
|`systune`|`yes`<br />`no`| Automatically tune system performance (CPU, sysctl). If `yes`, answers `yes` to all system tuning questions. |
94
+
95
+
Example answer file:
83
96
84
97
```sh
85
98
ignore_swap=no
@@ -88,10 +101,10 @@ Use an answer file to manage your response:
88
101
firewall=no
89
102
rlcheck=yes
90
103
ignore_existing_osuser_osgroup=no
104
+
skip_updating_env_path=yes
105
+
ignore_master_version=no
91
106
```
92
107
93
-
If you use `systune=yes`, the installation answers `yes` to all of the system tuning questions.
94
-
95
108
1. Run the [installation script]({{< relref "/operate/rs/installing-upgrading/install/install-script">}}) with the `-c` command-line option and add the path to the answer file.
0 commit comments