Glossary
Concepts
Initial Setup
Peformance & Benchmark
Troubleshooting
FAQs
The Redis Troubleshooting page provides quick guidance to help you identify and resolve common issues when using the Redis service on FPT Cloud DBaaS. This section focuses on frequently encountered problems such as connection errors, configuration issues, performance degradation, backup/restore failures, and Redis-specific scenarios.
Each topic includes clear descriptions of symptoms, root causes, and recommended resolutions, enabling you to perform initial troubleshooting or work effectively with the technical support team.
The goal of this document is to help you operate Redis in a stable, secure, and efficient manner while minimizing service disruption during incidents.
When a client application connects to Redis, the following error may occur:
Redis error: Server closed the connection
|
This happens when the Redis connection is unexpectedly terminated during processing. The application may experience timeouts or repeatedly attempt to reconnect.
This error occurs when the Redis server proactively closes the connection with the client. Common causes include:
When this error occurs, the system may be affected in the following ways:
Step 1: Verify network connectivity
Ensure the application can connect to Redis:
redis-cli -h -a -p ping
If PONG is not returned, check network connectivity or access configuration.
Step 2: Monitor Redis performance
Enable monitoring and review Redis performance via the monitoring dashboard (see section Monitoring for details). At minimum, monitor:
Step 3: Verify application connection configuration
Parameter names and configurations vary depending on the Redis client. However, ensure the following functional configurations are properly set:
Refer to your Redis client documentation for exact configuration details:
Step 4: Check firewall and network devices
If there are firewalls or intermediary devices between the Application subnet and Database subnet:
Refer to Redis document: https://redis.readthedocs.io/en/stable/connections.html
Recommendation: