Failed to Create Images on the Horizon WebUI
Symptom
The following error message is displayed when images are created on the Horizon WebUI:

Key Process and Cause Analysis
The size of the image file is too large. As a result, the file fails to be uploaded.
Conclusion and Solution
- Modify the configuration file /etc/httpd/conf.d/openstack-dashboard.conf.
- Open the file.
vi /etc/httpd/conf.d/openstack-dashboard.conf
- Press i to enter the insert mode and add the following content:
LimitRequestBody 10737418240
This configuration sets the maximum size of a file to be uploaded to 10 GB (10737418240 indicates the size in bytes). Adjust the value based on actual requirements.

- Press Esc to exit the insert mode. Type :wq! and press Enter to save the file and exit.
- Restart the httpd service.
systemctl restart httpd.service
- Open the file.
Parent topic: OpenStack