Unable to Apply Space Permissions due to exceeding the maximum number of request parameters
プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。
このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
症状
When trying to apply space permission for a user/group, an error is thrown and the following appears in the catalina.out
:
12-Oct-2017 13:45:56.435 INFO [http-nio-9001-exec-16] org.apache.tomcat.util.http.Parameters.processParameters More than the maximum number of request parameters (GET plus POST) for a single request ([10,000]) were detected. Any parameters beyond this limit have been ignored. To change this limit, set the maxParameterCount attribute on the Connector.
原因
This occurs because Tomcat has reached a maximum number of request parameters when trying to add a user/group to a space permission page. This usually happens when there are many users and groups defined in the space permission.
ソリューション
Add the following attribute to the Connector in the <confluence-install>/conf/server.xml:
maxParameterCount="20000"
The default value is 10000, so the new value should be something higher. In the example above, it is set to 20000. It can also be set to 0 to allow unlimited request parameters.
Refer to the Apache Tomcat 8 Configuration Reference for the full documentation of this Connector attribute.