Skip to content

Commit 534bd5a

Browse files
committed
DOC-4986 Copy rladmin cluster config s3_ca_cert step to import/export/backup DB in 7.4/7.8 versions
1 parent 50393dd commit 534bd5a

File tree

8 files changed

+104
-30
lines changed

8 files changed

+104
-30
lines changed

content/operate/rs/7.4/databases/import-export/export-data.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -161,13 +161,25 @@ To export data to an [Amazon Web Services](https://aws.amazon.com/) (AWS) Simple
161161

162162
- In the **Secret access key** field, enter the secret access key.
163163

164-
You can also connect to a storage service that uses the S3 protocol but is not hosted by Amazon AWS. The storage service must have a valid SSL certificate. To connect to an S3-compatible storage location, run [`rladmin cluster config`]({{<relref "/operate/rs/7.4/references/cli-utilities/rladmin/cluster/config">}}):
164+
You can also connect to a storage service that uses the S3 protocol but is not hosted by Amazon AWS. The storage service must have a valid SSL certificate.
165165

166-
```sh
167-
rladmin cluster config s3_url <URL>
168-
```
166+
To connect to an S3-compatible storage location:
167+
168+
1. Configure the S3 URL with [`rladmin cluster config`]({{<relref "/operate/rs/references/cli-utilities/rladmin/cluster/config">}}):
169+
170+
```sh
171+
rladmin cluster config s3_url <URL>
172+
```
173+
174+
Replace `<URL>` with the hostname or IP address of the S3-compatible storage location.
175+
176+
1. Configure the S3 CA certificate:
177+
178+
```sh
179+
rladmin cluster config s3_ca_cert <filepath>
180+
```
169181

170-
Replace `<URL>` with the hostname or IP address of the S3-compatible storage location.
182+
Replace `<filepath>` with the location of the S3 CA certificate `ca.pem`.
171183

172184
### Google Cloud Storage
173185

content/operate/rs/7.4/databases/import-export/import-data.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -156,13 +156,25 @@ In the Redis Enterprise Software Cluster Manager UI, when you enter the export l
156156

157157
- In the **Secret access key** field, enter the secret access key.
158158

159-
You can also connect to a storage service that uses the S3 protocol but is not hosted by Amazon AWS. The storage service must have a valid SSL certificate. To connect to an S3-compatible storage location, run [`rladmin cluster config`]({{<relref "/operate/rs/7.4/references/cli-utilities/rladmin/cluster/config">}}):
159+
You can also connect to a storage service that uses the S3 protocol but is not hosted by Amazon AWS. The storage service must have a valid SSL certificate.
160160

161-
```sh
162-
rladmin cluster config s3_url <URL>
163-
```
161+
To connect to an S3-compatible storage location:
162+
163+
1. Configure the S3 URL with [`rladmin cluster config`]({{<relref "/operate/rs/references/cli-utilities/rladmin/cluster/config">}}):
164+
165+
```sh
166+
rladmin cluster config s3_url <URL>
167+
```
168+
169+
Replace `<URL>` with the hostname or IP address of the S3-compatible storage location.
170+
171+
1. Configure the S3 CA certificate:
172+
173+
```sh
174+
rladmin cluster config s3_ca_cert <filepath>
175+
```
164176

165-
Replace `<URL>` with the hostname or IP address of the S3-compatible storage location.
177+
Replace `<filepath>` with the location of the S3 CA certificate `ca.pem`.
166178

167179
### Google Cloud Storage
168180

content/operate/rs/7.4/databases/import-export/schedule-backups.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -210,13 +210,25 @@ To store backups in an Amazon Web Services (AWS) Simple Storage Service (S3) [bu
210210

211211
- In the **Secret Access Key** field, enter the secret access key.
212212

213-
You can also connect to a storage service that uses the S3 protocol but is not hosted by Amazon AWS. The storage service must have a valid SSL certificate. To connect to an S3-compatible storage location, run [`rladmin cluster config`]({{<relref "/operate/rs/7.4/references/cli-utilities/rladmin/cluster/config">}}):
213+
You can also connect to a storage service that uses the S3 protocol but is not hosted by Amazon AWS. The storage service must have a valid SSL certificate.
214214

215-
```sh
216-
rladmin cluster config s3_url <URL>
217-
```
215+
To connect to an S3-compatible storage location:
216+
217+
1. Configure the S3 URL with [`rladmin cluster config`]({{<relref "/operate/rs/references/cli-utilities/rladmin/cluster/config">}}):
218+
219+
```sh
220+
rladmin cluster config s3_url <URL>
221+
```
222+
223+
Replace `<URL>` with the hostname or IP address of the S3-compatible storage location.
224+
225+
1. Configure the S3 CA certificate:
226+
227+
```sh
228+
rladmin cluster config s3_ca_cert <filepath>
229+
```
218230

219-
Replace `<URL>` with the hostname or IP address of the S3-compatible storage location.
231+
Replace `<filepath>` with the location of the S3 CA certificate `ca.pem`.
220232

221233
### Google Cloud Storage
222234

content/operate/rs/7.4/references/rest-api/objects/cluster/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ An API object that represents the cluster.
5555
| proxy_max_ccs_disconnection_time | integer | Cluster-wide proxy timeout policy between proxy and CCS |
5656
| rack_aware | boolean | Cluster operates in a rack-aware mode (read-only) |
5757
| reserved_ports | array of strings | List of reserved ports and/or port ranges to avoid using for database endpoints (for example `"reserved_ports": ["11000", "13000-13010"]`) |
58+
| s3_ca_cert | string | Filepath to the PEM-encoded CA certificate to use for validating TLS connections to the S3 server |
5859
| s3_url | string | Specifies the URL for S3 export and import |
5960
| saslauthd_ldap_conf | string | saslauthd LDAP configuration |
6061
| sentinel_cipher_suites | array | Specifies the list of enabled ciphers for the sentinel service. The supported ciphers are those implemented by the [cipher_suites.go](<https://golang.org/src/crypto/tls/cipher_suites.go>) package. |

content/operate/rs/7.8/databases/import-export/export-data.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -161,13 +161,25 @@ To export data to an [Amazon Web Services](https://aws.amazon.com/) (AWS) Simple
161161

162162
- In the **Secret access key** field, enter the secret access key.
163163

164-
You can also connect to a storage service that uses the S3 protocol but is not hosted by Amazon AWS. The storage service must have a valid SSL certificate. To connect to an S3-compatible storage location, run [`rladmin cluster config`]({{<relref "/operate/rs/7.8/references/cli-utilities/rladmin/cluster/config">}}):
164+
You can also connect to a storage service that uses the S3 protocol but is not hosted by Amazon AWS. The storage service must have a valid SSL certificate.
165165

166-
```sh
167-
rladmin cluster config s3_url <URL>
168-
```
166+
To connect to an S3-compatible storage location:
167+
168+
1. Configure the S3 URL with [`rladmin cluster config`]({{<relref "/operate/rs/references/cli-utilities/rladmin/cluster/config">}}):
169+
170+
```sh
171+
rladmin cluster config s3_url <URL>
172+
```
173+
174+
Replace `<URL>` with the hostname or IP address of the S3-compatible storage location.
175+
176+
1. Configure the S3 CA certificate:
177+
178+
```sh
179+
rladmin cluster config s3_ca_cert <filepath>
180+
```
169181

170-
Replace `<URL>` with the hostname or IP address of the S3-compatible storage location.
182+
Replace `<filepath>` with the location of the S3 CA certificate `ca.pem`.
171183

172184
### Google Cloud Storage
173185

content/operate/rs/7.8/databases/import-export/import-data.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -156,13 +156,25 @@ In the Redis Enterprise Software Cluster Manager UI, when you enter the export l
156156

157157
- In the **Secret access key** field, enter the secret access key.
158158

159-
You can also connect to a storage service that uses the S3 protocol but is not hosted by Amazon AWS. The storage service must have a valid SSL certificate. To connect to an S3-compatible storage location, run [`rladmin cluster config`]({{<relref "/operate/rs/7.8/references/cli-utilities/rladmin/cluster/config">}}):
159+
You can also connect to a storage service that uses the S3 protocol but is not hosted by Amazon AWS. The storage service must have a valid SSL certificate.
160160

161-
```sh
162-
rladmin cluster config s3_url <URL>
163-
```
161+
To connect to an S3-compatible storage location:
162+
163+
1. Configure the S3 URL with [`rladmin cluster config`]({{<relref "/operate/rs/references/cli-utilities/rladmin/cluster/config">}}):
164+
165+
```sh
166+
rladmin cluster config s3_url <URL>
167+
```
168+
169+
Replace `<URL>` with the hostname or IP address of the S3-compatible storage location.
170+
171+
1. Configure the S3 CA certificate:
172+
173+
```sh
174+
rladmin cluster config s3_ca_cert <filepath>
175+
```
164176

165-
Replace `<URL>` with the hostname or IP address of the S3-compatible storage location.
177+
Replace `<filepath>` with the location of the S3 CA certificate `ca.pem`.
166178

167179
### Google Cloud Storage
168180

content/operate/rs/7.8/databases/import-export/schedule-backups.md

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -210,13 +210,25 @@ To store backups in an Amazon Web Services (AWS) Simple Storage Service (S3) [bu
210210

211211
- In the **Secret Access Key** field, enter the secret access key.
212212

213-
You can also connect to a storage service that uses the S3 protocol but is not hosted by Amazon AWS. The storage service must have a valid SSL certificate. To connect to an S3-compatible storage location, run [`rladmin cluster config`]({{<relref "/operate/rs/7.8/references/cli-utilities/rladmin/cluster/config">}}):
213+
You can also connect to a storage service that uses the S3 protocol but is not hosted by Amazon AWS. The storage service must have a valid SSL certificate.
214214

215-
```sh
216-
rladmin cluster config s3_url <URL>
217-
```
215+
To connect to an S3-compatible storage location:
216+
217+
1. Configure the S3 URL with [`rladmin cluster config`]({{<relref "/operate/rs/references/cli-utilities/rladmin/cluster/config">}}):
218+
219+
```sh
220+
rladmin cluster config s3_url <URL>
221+
```
222+
223+
Replace `<URL>` with the hostname or IP address of the S3-compatible storage location.
224+
225+
1. Configure the S3 CA certificate:
226+
227+
```sh
228+
rladmin cluster config s3_ca_cert <filepath>
229+
```
218230

219-
Replace `<URL>` with the hostname or IP address of the S3-compatible storage location.
231+
Replace `<filepath>` with the location of the S3 CA certificate `ca.pem`.
220232

221233
### Google Cloud Storage
222234

content/operate/rs/7.8/references/rest-api/objects/cluster/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ An API object that represents the cluster.
5959
| <span class="break-all">proxy_max_ccs_disconnection_time</span> | integer | Cluster-wide proxy timeout policy between proxy and CCS |
6060
| rack_aware | boolean | Cluster operates in a rack-aware mode (read-only) |
6161
| reserved_ports | array of strings | List of reserved ports and/or port ranges to avoid using for database endpoints (for example `"reserved_ports": ["11000", "13000-13010"]`) |
62+
| s3_ca_cert | string | Filepath to the PEM-encoded CA certificate to use for validating TLS connections to the S3 server |
6263
| s3_url | string | Specifies the URL for S3 export and import |
6364
| saslauthd_ldap_conf | string | saslauthd LDAP configuration |
6465
| sentinel_cipher_suites | array | Specifies the list of enabled ciphers for the sentinel service. The supported ciphers are those implemented by the [cipher_suites.go](<https://golang.org/src/crypto/tls/cipher_suites.go>) package. |

0 commit comments

Comments
 (0)