Skip to content

Commit caa3ff1

Browse files
feat(mdb): connection
1 parent e81e1ce commit caa3ff1

21 files changed

+375
-493
lines changed

environmental-footprint/environmental-footprint/index.mdx

Lines changed: 0 additions & 27 deletions
This file was deleted.

managed-databases/mongodb/api-cli/backup-and-restore.mdx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
---
22
meta:
3-
title: Back up and restore Document Databases with MongoDB® tools
4-
description: This page shows you how to back up and restore Document Databases with MongoDB® command line tools
3+
title: Back up and restore MongoDB™ Databases with MongoDB® tools
4+
description: This page shows you how to back up and restore MongoDB™ Databases with MongoDB® command line tools
55
content:
6-
h1: Back up and restore Document Databases with MongoDB® tools
7-
paragraph: This page shows you how to back up and restore Document Databases with MongoDB® command line tools
8-
tags: databases mongodb ferretdb document backup database-nodes
6+
h1: Back up and restore MongoDB™ Databases with MongoDB® tools
7+
paragraph: This page shows you how to back up and restore MongoDB™ Databases with MongoDB® command line tools
8+
tags: databases mongodb mongodb document backup database-nodes
99
categories:
1010
- managed-databases
1111
- postgresql-and-mysql
1212
---
1313

14-
Managed Document Databases provide fully-managed document Database Instances, with a MongoDB®-compatible API layer over a PostgreSQL engine to store and retrieve data.
14+
Managed MongoDB™ Databases provide fully-managed document Database Instances, with a MongoDB®-compatible API layer over a PostgreSQL engine to store and retrieve data.
1515

16-
This means you can use MongoDB® command line tools to use and manage your Document Databases.
16+
This means you can use MongoDB® command line tools to use and manage your MongoDB™ Databases.
1717

18-
This tutorial shows how to backup and restore your Document Databases with the MongoDB® `mongodump` and `mongorestore` command line database tools.
18+
This tutorial shows how to backup and restore your MongoDB™ Databases with the MongoDB® `mongodump` and `mongorestore` command line database tools.
1919

2020
<Macro id="requirements" />
2121

2222
<Message type="requirement">
2323
- You have an account and are logged into the [Scaleway console](https://console.scaleway.com/)
2424
- You have a [MongoDB®-compatible client](https://www.mongodb.com/try/download/shell) installed
25-
- You have [created a Document Database Instance](/managed-databases/document-database/how-to/create-a-database-instance)
25+
- You have [created a MongoDB™ Database Instance](/managed-databases/mongodb/how-to/create-a-database-instance)
2626
- You have [mongodump and mongorestore tools](https://www.mongodb.com/docs/database-tools/installation/installation/) installed
2727
</Message>
2828

@@ -32,12 +32,12 @@ This tutorial shows how to backup and restore your Document Databases with the M
3232
Make sure you keep the `--ssl` and `--sslCAFile=<file.pem>` options in your commands, as you will need to authenticate using the default SSL certificate when you connect to your Database Instance.
3333
</Message>
3434

35-
## How to back up a Document Database Instance
35+
## How to back up a MongoDB™ Database Instance
3636

3737
To create backups, we will use the `mongodump` tool, which can create backups for an entire Database Instance, logical database or collection. It can also use a query to back up part of a collection.
3838

3939
1. Navigate to the [Scaleway console](https://console.scaleway.com/).
40-
2. Click **Document Databases** under **Managed Databases** on the side menu. A list of your Database Instances displays.
40+
2. Click **MongoDB™ Databases** under **Managed Databases** on the side menu. A list of your Database Instances displays.
4141
3. Click the database name or <Icon name="more" /> > **More info** to access the Database Instance information page.
4242
4. Download the Database Instance's SSL certificate.
4343
<Message type="important">
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
meta:
3-
title: Managed Document Databases - API/CLI Documentation
4-
description: Managed Document Databases API/CLI Documentation
3+
title: Managed MongoDB™ Databases - API/CLI Documentation
4+
description: Managed MongoDB™ Databases API/CLI Documentation
55
content:
6-
h1: Managed Document Databases - API/CLI Documentation
7-
paragraph: Managed Document Databases API/CLI Documentation
6+
h1: Managed MongoDB™ Databases - API/CLI Documentation
7+
paragraph: Managed MongoDB™ Databases API/CLI Documentation
88
---

managed-databases/mongodb/concepts.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
meta:
3-
title: Managed Document Databases - Concepts
4-
description: This page explains all the concepts related to Managed Document Databases.
3+
title: Managed MongoDB™ Databases - Concepts
4+
description: This page explains all the concepts related to Managed MongoDB™ Databases.
55
content:
6-
h1: Managed Document Databases - Concepts
7-
paragraph: This page explains all the concepts related to Managed Document Databases.
6+
h1: Managed MongoDB™ Databases - Concepts
7+
paragraph: This page explains all the concepts related to Managed MongoDB™ Databases.
88
tags: concepts managed-databases ferredb mongodb document
99
categories:
1010
- managed-databases
@@ -26,7 +26,7 @@ A Database Instance is made up of multiple (at least 1) dedicated compute nodes,
2626

2727
## Database snapshot
2828

29-
A [Snapshot](/managed-databases/document-database/how-to/manage-snapshots/) is a consistent, instantaneous copy of the Block Storage volume of your Database Instance at a certain point in time. They are designed to recover your data in case of failure or accidental alterations of the data by a user. They allow you to quickly create a new Instance from a previous state of your database, regardless of the size of the volume. Snapshots can only be stored in the same location as the original data.
29+
A [Snapshot](/managed-databases/mongodb/how-to/manage-snapshots/) is a consistent, instantaneous copy of the Block Storage volume of your Database Instance at a certain point in time. They are designed to recover your data in case of failure or accidental alterations of the data by a user. They allow you to quickly create a new Instance from a previous state of your database, regardless of the size of the volume. Snapshots can only be stored in the same location as the original data.
3030

3131
## Document database
3232

@@ -38,7 +38,7 @@ A point of connection to a database. The endpoint is associated with an IPv4 add
3838

3939
## Engine
4040

41-
A database engine is the software component that stores and retrieves your data from a database. Currently, FerretDB 1.2.0 is available. It runs on PostgreSQL 14.8. Users do not have direct access to the PostgreSQL layer when using FerretDB.
41+
A database engine is the software component that stores and retrieves your data from a database. Currently, MongoDB™ 7.0.11 and 7.0.12 are available.
4242

4343
## Logs
4444

managed-databases/mongodb/how-to/add-a-database.mdx

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ meta:
55
content:
66
h1: How to create a database
77
paragraph: This page explains how to create a database
8-
tags: managed-database database postgresql ferretdb database-instance mongodb
8+
tags: managed-database database postgresql mongodb database-instance mongodb
99
dates:
10-
validation: 2024-02-08
11-
posted: 2023-08-01
10+
validation: 2024-09-18
11+
posted: 2024-09-18
1212
categories:
1313
- managed-databases
1414
---
@@ -17,18 +17,13 @@ categories:
1717

1818
<Message type="requirement">
1919
- You have an account and are logged into the [Scaleway console](https://console.scaleway.com)
20-
- You have a [Document Database Instance](/managed-databases/document-database/quickstart)
20+
- You have a [MongoDB™ Database Instance](/managed-databases/mongodb/quickstart)
2121
</Message>
2222

23-
1. Click **Document Databases** under **Managed Databases** on the side menu. A list of your Database Instances displays.
23+
1. Click **MongoDB™ Databases** under **Managed Databases** on the side menu. A list of your Database Instances displays.
2424
2. Click the Database Instance name or <Icon name="more" /> > **More info** to access the Database Instance information page.
2525
3. Go to the **Databases** tab. A list of your databases displays. The list includes the database created by default upon Database Instance creation.
2626
4. Click **+ Create database** to create a new one. A pop-up appears.
2727
5. Enter a name for your database.
2828

2929
The new database appears in the list of your databases.
30-
31-
<Navigation title="See also">
32-
<PreviousButton to="/managed-databases/document-database/how-to/connect-database-instance">How to connect to a Document Database Instance</PreviousButton>
33-
<NextButton to="/managed-databases/document-database/how-to/add-users">How to add users</NextButton>
34-
</Navigation>

managed-databases/mongodb/how-to/add-users.mdx

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
meta:
3-
title: How to add users to a Document Database Instance
4-
description: This page explains how to add users to a Document Database Instance
3+
title: How to add users to a MongoDB™ Database Instance
4+
description: This page explains how to add users to a MongoDB™ Database Instance
55
content:
6-
h1: How to add users to a Document Database Instance
7-
paragraph: This page explains how to add users to a Document Database Instance
8-
tags: managed-database database postgresql ferretdb database-instance mongodb
6+
h1: How to add users to a MongoDB™ Database Instance
7+
paragraph: This page explains how to add users to a MongoDB™ Database Instance
8+
tags: managed-database database postgresql mongodb database-instance mongodb
99
dates:
10-
validation: 2024-02-08
11-
posted: 2023-08-01
10+
validation: 2024-09-18
11+
posted: 2024-09-18
1212
categories:
1313
- managed-databases
1414
---
@@ -19,10 +19,10 @@ Users can connect to a database and access its data. Each user has a different s
1919

2020
<Message type="requirement">
2121
- You have an account and are logged into the [Scaleway console](https://console.scaleway.com)
22-
- You have a [Document Database Instance](/managed-databases/document-database/quickstart)
22+
- You have a [MongoDB™ Database Instance](/managed-databases/mongodb/quickstart)
2323
</Message>
2424

25-
1. Click **Document Databases** under **Managed Databases** on the side menu. A list of your Database Instances displays.
25+
1. Click **MongoDB™ Databases** under **Managed Databases** on the side menu. A list of your Database Instances displays.
2626
2. Click the database name or <Icon name="more" /> > **More info** to access the Database Instance information page.
2727
3. Go to the **Users** tab. A list of users displays. If it is the first time you are creating a user, your list will display the user you set up during the creation of your Database Instance.
2828
4. Click <Icon name="plus" /> to create a new user.
@@ -44,8 +44,3 @@ Users can connect to a database and access its data. Each user has a different s
4444
Once the user is created, it is displayed in the user list.
4545

4646
To update the password, the permissions or delete the user, click <Icon name="more" /> to display the respective options.
47-
48-
<Navigation title="See also">
49-
<PreviousButton to="/managed-databases/document-database/how-to/add-a-database">How to create a database</PreviousButton>
50-
<NextButton to="/managed-databases/document-database/how-to/manage-permissions/">How to manage user permissions</NextButton>
51-
</Navigation>
Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
meta:
3-
title: How to configure advanced Document Database Instance settings
3+
title: How to configure advanced MongoDB™ Database Instance settings
44
description: This page explains how to configure advanced database settings
55
content:
6-
h1: How to configure advanced Document Database Instance settings
6+
h1: How to configure advanced MongoDB™ Database Instance settings
77
paragraph: This page explains how to configure advanced database settings
8-
tags: managed-database postgresql ferretdb database-instance advanced-settings mongodb
8+
tags: managed-database postgresql mongodb database-instance advanced-settings mongodb
99
dates:
10-
validation: 2024-02-08
11-
posted: 2023-08-01
10+
validation: 2024-09-18
11+
posted: 2024-09-18
1212
categories:
1313
- managed-databases
1414
---
@@ -19,14 +19,14 @@ Advanced settings allow you to modify the default configuration of your database
1919

2020
<Message type="requirement">
2121
- You have an account and are logged into the [Scaleway console](https://console.scaleway.com)
22-
- You have a [Document Database Instance](/managed-databases/document-database/quickstart)
22+
- You have a [MongoDB™ Database Instance](/managed-databases/mongodb/quickstart)
2323
</Message>
2424

2525
<Message type="important">
2626
Changing the advanced settings can have an impact on the performance of your Database Instance.
2727
</Message>
2828

29-
1. Click **Document Databases** under **Managed Databases** on the side menu. A list of your Database Instances displays.
29+
1. Click **MongoDB™ Databases** under **Managed Databases** on the side menu. A list of your Database Instances displays.
3030
2. Click the database name or <Icon name="more" /> > **More info** to access the database information page.
3131
3. Click the **Advanced settings** tab.
3232

@@ -43,8 +43,3 @@ To delete them:
4343
- Click <Icon name="delete" /> next to the setting you wish to delete.
4444
- Click <Icon name="validate" /> to confirm your changes.
4545

46-
47-
<Navigation title="See also">
48-
<PreviousButton to="/managed-databases/document-database/how-to/clone-a-database-instance">How to clone a Database Instance</PreviousButton>
49-
<NextButton to="/managed-databases/document-database/how-to/renew-tls-certificate">How to renew a TLS certificate</NextButton>
50-
</Navigation>

0 commit comments

Comments
 (0)