Normally, when Open XChange is not pre-configured (with the license code etc.) in the administrator back end of Plesk, it cannot be installed into subscriptions. But in that case it does not throw the error "Request URI Too Long" mentioned above. Instead, it displays a message telling the user to have the administrator first add some configuration values. I am not sure, what the real situation is on that system. For me information is insufficient to tackle the issue, but maybe another forum user has experienced the same issue before.
The "Request URI Too Long" is normally a consequence of a global configuration variable in the Apache (httpd) service conrfiguration files where "LimitRequestLine" needs to be set to a higher value (or added and set to a high value), such as
(allowing 20,000 characters in the URI). The issue itself occurs when a software places "too many" URL parameters into the URL. So expanding the number of characters allowed in an URI can be a workaround. However, the installation of Open XChange does not place "too many" parameters into the URL, unless the LimitRequestLine directive has a very low value. You can check for the variable in any of the /etc/httpd configuration files, e.g. search by
# grep -R LimitRequestLine /etc/httpd/*
It is possible, too, that the 414 is not generated by Apache, but by Nginx. In that case, you need to check the
Code:
client_header_buffer_size <value>;
large_client_header_buffers 8 <value>;
directives in the Nginx configuration. If present at all, these are located not in the virtual host entries, but in the global Nginx configuration file in the httpd-bracket.