Skip to content

Commit e1e9789

Browse files
committed
DOC-5680 Removed module install step from RS 8 version of recover DB
1 parent cecb428 commit e1e9789

File tree

1 file changed

+0
-71
lines changed

1 file changed

+0
-71
lines changed

content/operate/rs/databases/recover.md

Lines changed: 0 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ The database recovery process includes:
2323

2424
1. If the cluster failed, [recover the cluster]({{< relref "/operate/rs/clusters/cluster-recovery.md" >}}).
2525
1. Identify recoverable databases.
26-
1. Verify the module versions used by any databases are installed on the cluster.
2726
1. Restore the database data.
2827
1. Verify that the databases are active.
2928

@@ -71,76 +70,6 @@ of the configuration and persistence files on each of the nodes.
7170

7271
If you cannot resolve the issues, contact [Redis support](https://redis.com/company/support/).
7372

74-
1. Verify the module versions used by any recoverable databases are installed on the cluster:
75-
76-
1. Check which module versions are currently installed on the cluster using one of the following methods:
77-
78-
{{< multitabs id="get-module-versions"
79-
tab1="Cluster Manager UI"
80-
tab2="rladmin"
81-
tab3="REST API" >}}
82-
83-
In the Cluster Manager UI, go to **Cluster > Modules**.
84-
85-
-tab-sep-
86-
87-
Run [`rladmin status modules`]({{< relref "/operate/rs/references/cli-utilities/rladmin/status#status-modules" >}}):
88-
89-
```sh
90-
rladmin status modules
91-
```
92-
93-
-tab-sep-
94-
95-
Send a [`GET /v1/modules`]({{< relref "/operate/rs/references/rest-api/requests/modules#list-modules" >}}) request:
96-
97-
```sh
98-
GET https://<host>:<port>/v1/modules
99-
```
100-
101-
{{< /multitabs >}}
102-
103-
1. Identify the module versions required by the recoverable databases. To do so, run [`rladmin status modules`]({{< relref "/operate/rs/references/cli-utilities/rladmin/status#status-modules" >}}) and check the `DATABASE MODULES` section for the module versions listed for the recoverable databases:
104-
105-
```sh
106-
rladmin status modules extra all
107-
```
108-
109-
1. Download any missing modules versions from the [Redis download center](https://redis.io/downloads/#tools).
110-
111-
1. [Install the downloaded modules on the cluster]({{< relref "/operate/oss_and_stack/stack-with-enterprise/install/add-module-to-cluster" >}}) using one of the following methods:
112-
113-
{{< multitabs id="install-modules"
114-
tab1="Cluster Manager UI"
115-
tab2="REST API" >}}
116-
117-
To add a module to the cluster using the Cluster Manager UI:
118-
119-
1. Go to **Cluster > Modules**.
120-
121-
1. Select **Upload module**.
122-
123-
1. Use the file browser to add the packaged module.
124-
125-
-tab-sep-
126-
127-
To add a module to the cluster using the REST API:
128-
129-
1. Copy the module package to a node in the cluster.
130-
131-
1. Add the module to the cluster with a [`POST` request to the `/v2/modules`]({{< relref "/operate/rs/references/rest-api/requests/modules#post-module-v2" >}}) endpoint:
132-
133-
```sh
134-
POST https://[host][:port]/v2/modules
135-
"module=@/tmp/redisearch.Linux-ubuntu16.04-x86_64.2.2.6.zip"
136-
```
137-
138-
Here, the *module* parameter specifies the full path of the module package and must be submitted as form-data. In addition, the package must be available and accessible to the server processing the request.
139-
140-
1. If the module installation succeeds, the `POST` request returns a [JSON object]({{< relref "/operate/rs/references/rest-api/objects/module" >}}) that represents the new module. If it fails, it may return a JSON object with an `error_code` and `description` with more details.
141-
142-
{{< /multitabs >}}
143-
14473
1. Recover the database using one of the following [`rladmin recover`]({{< relref "/operate/rs/references/cli-utilities/rladmin/recover" >}}) commands:
14574

14675
- Recover all databases from the persistence files located in the persistent storage drives:

0 commit comments

Comments
 (0)