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: storage/object/troubleshooting/cannot-restore-glacier.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ content:
7
7
paragraph: Learn to troubleshoot issues when restoring Glacier objects.
8
8
tags: help troubleshooting object storage restore glacier fail unable impossible
9
9
dates:
10
-
validation: 2024-06-04
10
+
validation: 2024-12-09
11
11
posted: 2024-06-04
12
12
categories:
13
13
- storage
@@ -20,11 +20,11 @@ categories:
20
20
21
21
## Problem
22
22
23
-
I need to retrieve my data from Scaleway Glacier, but the restore operation does not seem to function.
23
+
I need to retrieve my data from Scaleway Glacier, but the restore operation does not seem to work.
24
24
25
25
## Cause
26
26
27
-
The time it takes to restore an object depends on the size of the object and if [multipart](/storage/object/concepts/#multipart-uploads) is configured. If your object is larger than 1 MB, it can take anywhere from a few minutes to 24 hours for restore to start.
27
+
The time it takes to restore an object depends on the size of the object, and if [multipart](/storage/object/concepts/#multipart-uploads) is configured. If your object is larger than 1 MB, it can take anywhere from a few minutes to 24 hours for restore to start.
Copy file name to clipboardExpand all lines: tutorials/install-pgbouncer/index.mdx
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,11 +10,11 @@ categories:
10
10
- instances
11
11
- postgresql-and-mysql
12
12
dates:
13
-
validation: 2024-06-03
13
+
validation: 2024-12-12
14
14
posted: 2022-02-24
15
15
---
16
16
17
-
PgBouncer is a connection pooler for PostgreSQL. It sits between the application and the PostgreSQL server. PgBouncer opens multiple connections to the database and serves it to the application. This reduces connection opening costs for the application and gives a performance boost.
17
+
[PgBouncer](https://www.pgbouncer.org/) is a connection pooler for [PostgreSQL](https://www.postgresql.org/). It sits between the application and the PostgreSQL server. PgBouncer opens multiple connections to the database and serves it to the application. This reduces connection opening costs for the application and gives a performance boost.
18
18
19
19
There are three types of pooling modes:
20
20
- Session: The server connection will be released back to the pool after the client disconnects. (Default pooling method.)
@@ -35,7 +35,7 @@ In this tutorial, you can choose the pooling mode that best suits your workload.
35
35
36
36
The **PostgreSQL Global Development Group (PGDG)** provides an apt repository. After importing the repository, you can install the PgBouncer package.
37
37
38
-
1.ImportthePDGGrepositorysigningkey:
38
+
1.ImportthePGDGrepositorysigningkey:
39
39
```
40
40
sudo apt install curl ca-certificates
41
41
sudo install -d /usr/share/postgresql-common/pgdg
@@ -133,7 +133,7 @@ Here are a few commands that can be used after connecting to the `pgbouncer` dat
133
133
134
134
## Doing an online restart
135
135
136
-
-You can do an online restart without terminating the connections. PgBouncer launches a new process and loads open sockets from running PgBouncer. After that, the old process is stopped and the new process resumes. This way, connections are not interrupted. This is very useful when upgrading PgBouncer.
136
+
You can do an online restart without terminating the connections. PgBouncer launches a new process and loads open sockets from running PgBouncer. After that, the old process is stopped and the new process resumes. This way, connections are not interrupted. This is very useful when upgrading PgBouncer.
@@ -150,17 +150,17 @@ Here are a few commands that can be used after connecting to the `pgbouncer` dat
150
150
max_client_conn = max_client_conn + (max pool_size * total databases * total users)
151
151
```
152
152
153
-
- You may want to increase this number to 5 or 10. When the specified `pool_size` is not enough, it uses the reserved pool and logs it. It can be used to determine `pool_size`. (Default: 0)
153
+
- You can set this value to 5 or 10. When the specified `pool_size` is not enough, it uses the reserved pool and logs it. It can be used to determine `pool_size`. (Default: 0)
154
154
```
155
155
reserve_pool_size = 10
156
156
```
157
157
158
-
- Connecting to PostgreSQL through PgBouncer will mask the PostgreSQL IP. This setting adds the client host address and port to the application name. It is very helpful when troubleshooting. (Default: 0)
158
+
- Connecting to PostgreSQL through PgBouncer will mask the PostgreSQL IP. This setting adds the client host address and port to the application name, which can be helpful when troubleshooting. (Default: 0)
159
159
```
160
160
application_name_add_host = 1
161
161
```
162
162
163
-
- By default, PgBouncer reuses server connections in LIFO (last-in, first-out). If you are using a TCP load balancer with a round-robin behind the PostgreSQL IP address, you may want to enable `server_round_robin` to achieve higher performance. (Default: 1)
163
+
- By default, PgBouncer reuses server connections in LIFO (last-in, first-out). If you are using a TCP load balancer with a round-robin behind the PostgreSQL IP address, enable `server_round_robin` to achieve higher performance. (Default: 1)
Copy file name to clipboardExpand all lines: tutorials/installation-uncomplicated-firewall/index.mdx
+17-4Lines changed: 17 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ tags: Firewall UFW port-25
9
9
categories:
10
10
- instances
11
11
dates:
12
-
validation: 2024-06-03
12
+
validation: 2024-12-13
13
13
posted: 2018-07-18
14
14
---
15
15
@@ -21,12 +21,24 @@ UFW, or **[Uncomplicated FireWall](https://en.wikipedia.org/wiki/Uncomplicated_F
21
21
22
22
- A Scaleway account logged into the [console](https://console.scaleway.com)
23
23
-[Owner](/identity-and-access-management/iam/concepts/#owner) status or [IAM permissions](/identity-and-access-management/iam/concepts/#permission) allowing you to perform actions in the intended Organization
24
+
- An [Instance](/compute/instances/how-to/create-an-instance/) running on Ubuntu Focal Fossa or later
24
25
- An [SSH key](/identity-and-access-management/organizations-and-projects/how-to/create-ssh-key/)
25
26
-`sudo` privileges or access to the root user
26
27
27
28
## Installing UFW
28
29
29
-
UFW is available as a pre-built package in the apt repositories of Ubuntu. It can be easily installed via apt:
30
+
UFW is available as a pre-built package in the apt repositories of Ubuntu. It can be easily installed via `apt`.
31
+
32
+
1. Connect to your Instance with SSH. In a terminal run:
33
+
```
34
+
ssh root@<your_instance_ip>
35
+
```
36
+
2. Update the system and upgrade the software already installed on the Instance.
37
+
```
38
+
apt update && apt upgrade -y
39
+
```
40
+
41
+
3. run the command below to install UFW:
30
42
31
43
```code
32
44
sudo apt-get install ufw
@@ -82,7 +94,7 @@ The services running on the machine used in this example need the following port
82
94
```
83
95
84
96
<Messagetype="note">
85
-
In this case `TCP` has not to be specified, as both,`TCP` and `UDP` are needed.
97
+
In this case `TCP` has not to be specified, as both `TCP` and `UDP` are needed.
86
98
</Message>
87
99
5. Activate the new rules.
88
100
```code
@@ -130,7 +142,8 @@ Over time, you may recognize that some of the rules you defined previously do no
130
142
```
131
143
132
144
The numbers at the beginning of each row are the number of the rule in UFW.
Copy file name to clipboardExpand all lines: tutorials/jitsi-ubuntu-jammy-jellyfish/index.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ categories:
10
10
- domains-and-dns
11
11
tags: media videoconferencing Jitsi-Meet
12
12
dates:
13
-
validation: 2024-06-03
13
+
validation: 2024-12-12
14
14
posted: 2022-11-16
15
15
---
16
16
@@ -80,13 +80,13 @@ Jitsi Meet provides users with a complete suite of tools, making virtual meeting
80
80
81
81
When asked:
82
82
83
-
- Enter the FQDN of your Instance. For example `jitsi.mydomain.tld` and press **Enter**.
83
+
- Enter the [FQDN](/network/domains-and-dns/concepts/#fully-qualified-domain-name-fqdn) of your Instance (for example `jitsi.mydomain.tld`), and press **Enter**.
84
84
- Choose the `Let's Encrypt certificates` option as an SSL certificate and press **Enter**.
85
85
- Enter your email address.
86
86
- Enter your phone number (optional).
87
87
7. Open a web browser and type the FQDN of your Instance, for example: `https://jitsi.mydomain.tld`. The following screen displays:
88
88
<Lightboxsrc="scaleway-jitsi_home.webp"alt="" />
89
-
8. Enter a name for your conference and press `Start meeting` to enter the conference room.
89
+
8. Enter a name for your conference, and press `Start meeting` to enter the conference room.
For more information about Jitsi Meet and the advanced configuration of the tool, refer to the [official Jitsi documentation](https://jitsi.github.io/handbook/docs/intro/).
0 commit comments