Skip to content

Commit a33edaf

Browse files
feat(red): fixes
1 parent dd164b8 commit a33edaf

File tree

5 files changed

+73
-9
lines changed

5 files changed

+73
-9
lines changed

pages/managed-databases-for-postgresql-and-mysql/troubleshooting/database-instance-connectivity-issues.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ meta:
55
content:
66
h1: Dealing with Database Instance connectivity issues
77
paragraph: Troubleshoot Database Instance connectivity issues for Managed Databases for MySQL and PostgreSQL.
8-
tags: disk-full databases
8+
tags: connectivity databases
99
dates:
1010
validation: 2025-01-29
1111
posted: 2025-01-29
@@ -145,5 +145,5 @@ Run the script in a terminal:
145145
```
146146
export INSTANCE_IP=<xxx.xxx.xxx.xxx>
147147
export INSTANCE_PORT=<xxxxx>
148-
./troubleshoot.sh
148+
./rdb_troubleshoot.sh
149149
```

pages/managed-databases-for-postgresql-and-mysql/troubleshooting/database-instance-performance-issues.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ meta:
55
content:
66
h1: Dealing with Database Instance performance issues
77
paragraph: Troubleshoot Database Instance performance issues in Managed Databases for MySQL and PostgreSQL.
8-
tags: disk-full databases
8+
tags: databases performance
99
dates:
1010
validation: 2025-01-29
1111
posted: 2025-01-29

pages/managed-databases-for-redis/troubleshooting/database-instance-connectivity-issues.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ You can check the following points to identify and act on what might be causing
3333

3434
1. If TLS is enabled on the Database Instance, make sure the certificate is up to date, and that your client application is properly configured.
3535
2. Make sure your [ACLs](/managed-databases-for-redis/concepts/#allowed-ips) are [properly configured](/managed-databases-for-redis/how-to/manage-allowed-ip-addresses-redis).
36-
3. Make sure your Database Instance has not reached the maximum number of connections stipulated in the advanced settings of the Database Instance. You can monitor the number of connections on [Cockpit](/managed-databases-for-postgresql-and-mysql/how-to/monitor-databases-cockpit). You can also [adjust the advanced settings](/managed-databases-for-redis/how-to/configure-advanced-settings-redis) to accept a higher number of connections.
36+
3. Make sure your Database Instance has not reached the maximum number of connections stipulated in the advanced settings of the Database Instance. You can monitor the number of connections on Cockpit. You can also [adjust the advanced settings](/managed-databases-for-redis/how-to/configure-advanced-settings-redis) to accept a higher number of connections.
3737
4. [Monitor other usage metrics on Cockpit](/managed-databases-for-postgresql-and-mysql/how-to/monitor-databases-cockpit) to:
3838

3939
- Check if the memory usage is nominal. High memory usage could trigger OOM Kills and cause disconnection
@@ -57,15 +57,15 @@ I cannot connect to my Database Instance through a Private Network.
5757
You can carry out the following actions:
5858

5959
1. Try to connect to the Database Instance from the public endpoint, if one is available, to identify the possible origin (network or instance). This information can help you or the support team to identify the issue.
60-
2. [Use Cockpit](/managed-databases-for-postgresql-and-mysql/how-to/monitor-databases-cockpit) to check database logs and look for any activity or behavior that could explain the issue.
60+
2. [Use Cockpit](/managed-databases-for-redis/how-to/monitor-databases-cockpit) to check database logs and look for any activity or behavior that could explain the issue.
6161
3. Create a support ticket if the first two steps do not help troubleshoot the issue. In the body of the ticket, make sure you provide:
6262

6363
- The resource ID of resource from which the connection was attempted
64-
- The output of the `rdb_troubleshoot.sh` script, indicated below. Make sure you execute the script on the machine from which the connection was attempted.
64+
- The output of the `redis_troubleshoot.sh` script, indicated below. Make sure you execute the script on the machine from which the connection was attempted.
6565

6666
#### Database Instance connectivity check script
6767

68-
`rdb_troubleshoot.sh`:
68+
`redis_troubleshoot.sh`:
6969

7070
```sh
7171
#!/bin/bash
@@ -89,7 +89,7 @@ function header() {
8989
echo -e "---------------------------------\n"
9090
}
9191

92-
echo -e "\nRDB troubleshooting script\nThis script will run for several minutes to get enough information."
92+
echo -e "\nREDIS troubleshooting script\nThis script will run for several minutes to get enough information."
9393
header "Host information"
9494
if ! [ -x "$(command -v uname)" ]; then
9595
echo 'Skipped: uname command is not availabe.'
@@ -145,5 +145,5 @@ Run the script in a terminal:
145145
```
146146
export INSTANCE_IP=<xxx.xxx.xxx.xxx>
147147
export INSTANCE_PORT=<xxxxx>
148-
./troubleshoot.sh
148+
./redis_troubleshoot.sh
149149
```
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
meta:
3+
title: Dealing with Database Instance performance issues
4+
description: Troubleshoot Database Instance performance issues in Managed Databases for Redis™.
5+
content:
6+
h1: Dealing with Database Instance performance issues
7+
paragraph: Troubleshoot Database Instance performance issues in Managed Databases for Redis™.
8+
tags: databases performance
9+
dates:
10+
validation: 2025-02-13
11+
posted: 2025-02-13
12+
categories:
13+
- managed-databases
14+
- redis
15+
---
16+
17+
## Problem
18+
19+
My Database Instance is not performing as expected.
20+
21+
## Possible causes
22+
23+
- High data loads
24+
- High incoming traffic from specific apps or websites
25+
- Huge or sub-optimized SQL queries
26+
27+
## Solution
28+
29+
You can [Monitor usage metrics on Cockpit](/managed-databases-for-redis/how-to/monitor-databases-cockpit) to check if the usage is nominal.
30+
31+
The Database Instance can be impacted by high data loads or unexpected high traffic from an app or website, for example. You can [scale up your Instance](/managed-databases-for-redis/how-to/scale-up-a-database-for-redis) if necessary.
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
meta:
3+
title: Dealing with Database Instance unavailability
4+
description: Troubleshoot Database Instance unavailability for Managed Databases for Redis™.
5+
content:
6+
h1: Dealing with Database Instance unavailability
7+
paragraph: Troubleshoot Database Instance unavailability for Managed Databases for Redis™L.
8+
tags: unavailability databases
9+
dates:
10+
validation: 2025-02-17
11+
posted: 2025-02-17
12+
categories:
13+
- managed-databases
14+
- redis
15+
---
16+
17+
## Problem
18+
19+
My Database Instance is unavailable.
20+
21+
## Possible causes
22+
23+
- High data loads
24+
- High incoming traffic from specific apps or websites
25+
26+
## Solution
27+
28+
You can monitor your Database Instance activity to be able to quickly identify and act on irregular activities that might be causing the instability/unavailability.
29+
30+
[Monitor usage metrics on Cockpit](/managed-databases-for-redis/how-to/monitor-databases-cockpit) to:
31+
32+
- Check if the usage is regular. Database Instance can be impacted by high data loads or unexpected high traffic from an app or website, for example
33+
- Check the Database Instance logs for any unusual or suspicious activity

0 commit comments

Comments
 (0)