Getting 'Request Entity Too Large' after editing a Confluence page
プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。
このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。
*Fisheye および Crucible は除く
要約
When users try to edit a page, it fails with error 'Request Entity Too Large' in their browsers
環境
Confluence 7.4.
診断
Users receive a 'Request Entity Too Large' followed by "The requested resource does not allow request data with POST requests, or the amount of data provided in the requests exceeds the capacity limit" when editing a page.
The message in the browser will look like this:
原因
The Tomcat connector maxPostSize is too small.
ソリューション
Please, increase maxPostSize value or add (if not present) maxPostSize parameter in your Tomcat connector to mitigate this issue:
- Confluence をシャットダウンします。
- Backup
/data/atlassian/confluence/conf/server.xml
Edit
/data/atlassian/confluence/conf/server.xml
From:<Connector port="8090" connectionTimeout="20000" redirectPort="8443" maxThreads="1500" minSpareThreads="10" enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8" protocol="org.apache.coyote.http11.Http11NioProtocol" proxyName="<YOUR_PROXY_NAME>" proxyPort="443" scheme="https" maxHttpHeaderSize="32768"
変更後:
<Connector port="8090" connectionTimeout="20000" redirectPort="8443" maxThreads="1500" maxPostSize="16777216" minSpareThreads="10" enableLookups="false" acceptCount="10" debug="0" URIEncoding="UTF-8" protocol="org.apache.coyote.http11.Http11NioProtocol" proxyName="<YOUR_PROXY_NAME>" proxyPort="443" scheme="https" maxHttpHeaderSize="32768"
- Confluence を起動します。