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
Redis Enterprise Software lets you create databases and distribute them across a cluster of nodes.
14
+
Redis Enterprise Software lets you create databases and distribute them across a cluster of nodes using the [Cluster Manager UI](#cluster-manager-ui-method) or the [REST API](#rest-api-method).
15
15
16
-
To create a new database:
16
+
## Cluster Manager UI method
17
+
18
+
To create a new database using the Cluster Manager UI:
17
19
18
20
1. Sign in to the Cluster Manager UI at `https://<hostname>:8443`
19
21
20
22
1. Use one of the following methods to create a new database:
21
23
22
24
-[Quick database](#quick-database)
23
25
24
-
-[Create database](#create-database) with additional configuration
26
+
-[Create database with additional configuration](#create-db-ui)
25
27
26
28
1. If you did not specify a port number for the database, you can find the port number in the **Endpoint** field in the **Databases > Configuration > General** section.
27
29
@@ -33,7 +35,7 @@ For databases with Active-Active replication for geo-distributed locations,
33
35
see [Create an Active-Active database]({{< relref "/operate/rs/databases/active-active/create.md" >}}). To create and manage Active-Active databases, use the legacy UI.
34
36
{{< /note >}}
35
37
36
-
## Quick database
38
+
###Quick database
37
39
38
40
To quickly create a database and skip additional configuration options during initial creation:
39
41
@@ -57,7 +59,7 @@ To quickly create a database and skip additional configuration options during in
57
59
58
60
1. Select **Create**.
59
61
60
-
## Create database
62
+
###Create database with additional configuration {#create-db-ui}
61
63
62
64
To create a new database and configure additional settings:
63
65
@@ -99,6 +101,22 @@ For Active-Active databases, see [Create an Active-Active geo-replicated databas
99
101
100
102
1. Select **Create**.
101
103
104
+
## REST API method
105
+
106
+
To [create a database]({{<relref "/operate/rs/references/rest-api/requests/bdbs#post-bdbs-v1">}}) using a REST API request:
107
+
108
+
```sh
109
+
POST https://<host>:<port>/v1/bdbs
110
+
{
111
+
"name": "test-database",
112
+
"type": "redis",
113
+
"memory_size": 1073741824,
114
+
// Additional fields
115
+
}
116
+
```
117
+
118
+
For additional database configuration fields, see the [BDB object]({{<relref "/operate/rs/references/rest-api/objects/bdb">}}) reference.
0 commit comments