Question
Some of our customers are reporting a '507 Insufficient Storage' error when accessing certain websites. Sites with a large number of images are failing to load, and when users are editing multiple items across different browser tabs. What could be causing this?"
Answer
When a domain displays a "507 Insufficient Storage," this is because the LSPHP workers need to be increased. To resolve this, it's recommended to increase the number of LSAPI children, disable LSAPI reject mode, and tune Apache.
To make these changes, you'll need to update the /etc/apache2/conf.d/lsapi.conf:
- Access your server via SSH as the root user.
- Using your favorite editor, modify the file "/etc/apache2/conf.d/lsapi.conf".
- Within the file, add "lsapi_disable_reject_mode On"
- Find the "lsapi_backend_children" directive and uncomment the line.
- Increase the original value.
- Save the file.
-
Restart Apache:
/scripts/restartsrv_apache
-
Remount CageFS
cagefsctl --remount-all
Please note, you will also want to tune Apache for MaxRequestWorkers to prevent the system from becoming overloaded. Please review the "Tuning MaxRequestWorkers for Apache" article under our Additional Resources section.
Additional Resources
Tuning MaxRequestWorkers for Apache
LSAPI Configuration File Location and Most Commonly Modified Configuration Directives
Comments
0 comments
Article is closed for comments.