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: pages/managed-databases-for-postgresql-and-mysql/reference-content/product-features.mdx
+390Lines changed: 390 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,3 +41,393 @@ List of features in alphabetical order, including:
41
41
42
42
43
43
44
+
Got it — clean, professional Markdown without any emojis. Here's the full set of templates in pure copiable format, with YAML frontmatter and no extra text or emojis.
45
+
46
+
---
47
+
48
+
```markdown
49
+
---
50
+
title: "Quickstart: Create an Instance"
51
+
description: Get started with Scaleway Instances in less than 5 minutes.
52
+
---
53
+
54
+
# Quickstart: Create an Instance
55
+
56
+
This guide shows you how to create and connect to a Scaleway Instance in just a few steps.
57
+
58
+
## Requirements
59
+
60
+
- You have a Scaleway account. [Create one here](https://console.scaleway.com/register).
61
+
- You are logged in to the [Scaleway Console](https://console.scaleway.com).
62
+
- You have created an API key (optional for CLI steps).
63
+
64
+
## Create via Console
65
+
66
+
1. Go to the **Compute > Instances** section in the console.
67
+
2. Click **Create an Instance**.
68
+
3. Choose an image (e.g., Ubuntu 22.04).
69
+
4. Select an instance type (e.g., DEV1-S).
70
+
5. Choose a region (e.g., `fr-par-1`).
71
+
6. Click **Create Instance**.
72
+
73
+
The root password will be sent to your email.
74
+
75
+
## Connect via SSH
76
+
77
+
Once the instance is running:
78
+
79
+
```bash
80
+
ssh root@<instance_public_ip>
81
+
```
82
+
83
+
Tip: Use SSH keys for better security. See [managing SSH keys](https://www.scaleway.com/en/docs/compute/instance/how-to/connect-using-ssh-keys/).
84
+
85
+
## Next Steps
86
+
87
+
-[Customize your instance](https://www.scaleway.com/en/docs/compute/instance/how-to/configure-instance/)
88
+
-[Set up a private network](https://www.scaleway.com/en/docs/network/vpc/quickstart/)
89
+
-[Explore the API](https://www.scaleway.com/en/docs/compute/instance/api/reference/)
90
+
```
91
+
92
+
```markdown
93
+
---
94
+
title: "How to Connect to an Instance Using SSH Keys"
95
+
description: Learn how to securely connect to your Scaleway Instance using SSH keys.
96
+
---
97
+
98
+
# How to Connect to an Instance Using SSH Keys
99
+
100
+
This guide explains how to use SSH keys to connect to your Scaleway Instance instead of using passwords.
101
+
102
+
## Prerequisites
103
+
104
+
- A running Scaleway Instance.
105
+
- SSH key pair generated (`id_rsa` and `id_rsa.pub`, or use `ssh-keygen`).
106
+
107
+
## Step 1: Add Your Public Key in the Console
108
+
109
+
1. Go to **Compute > Instances**.
110
+
2. In the left sidebar, click **SSH Keys**.
111
+
3. Click **Add an SSH key**.
112
+
4. Enter a name (e.g., `my-laptop`) and paste your public key (the content of `id_rsa.pub`).
113
+
5. Click **Add**.
114
+
115
+
## Step 2: Attach Key During Instance Creation
116
+
117
+
When creating a new instance:
118
+
- In the **Security** section, select your SSH key.
119
+
- The instance will allow SSH access using your private key.
120
+
121
+
## Step 3: Connect via SSH
122
+
123
+
```bash
124
+
ssh root@<instance_public_ip>
125
+
```
126
+
127
+
No password needed if your key is set up correctly.
128
+
129
+
## Troubleshooting
130
+
131
+
-**Error: Permission denied (publickey)**
132
+
Ensure your SSH agent is running:
133
+
```bash
134
+
eval$(ssh-agent)
135
+
ssh-add ~/.ssh/id_rsa
136
+
```
137
+
138
+
-**Key not loading?**
139
+
Confirm the public key in the console matches your `.pub` file.
0 commit comments