Common Errors
Frequently encountered errors and solutions.
Database Connection Errors
Error: "Database connection failed"
Causes:
- PostgreSQL not running
- Incorrect credentials
- Network issues
Solutions:
- Verify PostgreSQL is running:
pg_isready - Check
.envfile for correct credentials - Test connection:
psql -h localhost -U postgres -d cloud_storage - Verify firewall rules
Redis Connection Errors
Error: "Redis connection failed"
Causes:
- Redis not running
- Incorrect host/port
- Authentication failed
Solutions:
- Verify Redis is running:
redis-cli ping - Check
REDIS_HOSTandREDIS_PORTin.env - Verify
REDIS_PASSWORDif set - Note: App works without Redis (caching disabled)
Storage Limit Errors
Error: "Storage limit exceeded"
Causes:
- User storage quota reached
- File too large for remaining quota
Solutions:
- Check storage usage in Settings
- Delete unnecessary files
- Empty trash (permanently delete)
- Admin: Increase storage limit
Upload Errors
Error: "This file is too large"
Causes:
- File exceeds the max upload size setting
Solutions:
- Check current max upload size in Settings → Storage
- Admin: Increase the max upload size
- Split the file into smaller parts
Error: "Upload failed"
Causes:
- Storage limit exceeded
- Network issues
- Disk space full
Solutions:
- Check storage quota
- Verify disk space:
df -h - Retry upload
Authentication Errors
Error: "Invalid credentials"
Causes:
- Wrong email or password
- Account locked
- MFA required
Solutions:
- Verify email and password
- Check if MFA is enabled
- Reset password if needed
- Check account status
Related Topics
- Auth Issues - Authentication problems
- Upload Issues - Upload problems
- API Errors - Error codes