Edit the configuration files to allow 4GB upload size instead of 2GB.
- Launch an SSH client, such as PuTTY.
- Login to the primary Authentication Manager server as rsaadmin and enter the operating system password.
Note that during Quick Setup another user name may have been selected. Use that user name to login.
- Navigate to /opt/rsa/am/server/config/.
- Take a backup of the configuration file:
cp /opt/rsa/am/server/config/config.xml /opt/rsa/am/server/config/config.xml.bak
- Open the config.xml using a text editor like vim:
vim /opt/rsa/am/server/config/config.xml
- Find the entry for <max-post-size>, shown in bold below:
<web-server> <name>AdminServer</name> <web-server-log> <name>AdminServer</name> <file-name>../../logs/AdminServer_access.log</file-name> <rotation-type>bySize</rotation-type> <file-count>5</file-count> <file-min-size>5120</file-min-size> <elf-fields>c-ip date time time-taken cs-method cs-uri sc-status bytes</elf-fields> <log-file-format>extended</log-file-format> </web-server-log> <post-timeout-secs>15</post-timeout-secs> <max-post-time-secs>3600</max-post-time-secs> <max-post-size>2000000000</max-post-size> </web-server>
- Press i to enter Insert mode.
- Edit the <max-post-size> value to be 4000000000, instead of 2000000000:
<web-server> <name>AdminServer</name> <web-server-log> <name>AdminServer</name> <file-name>../../logs/AdminServer_access.log</file-name> <rotation-type>bySize</rotation-type> <file-count>5</file-count> <file-min-size>5120</file-min-size> <elf-fields>c-ip date time time-taken cs-method cs-uri sc-status bytes</elf-fields> <log-file-format>extended</log-file-format> </web-server-log> <post-timeout-secs>15</post-timeout-secs> <max-post-time-secs>3600</max-post-time-secs> <max-post-size>4000000000</max-post-size> </web-server>
- Press Esc to exit from Insert mode
- Type :wq! and press Enter to save and exit.
- Take a backup of AdminServerWrapper.conf
cp /opt/rsa/am/server/wrapper/AdminServerWrapper.conf /opt/rsa/am/server/wrapper/AdminServerWrapper.conf.bak
- Open AdminServerWrapper.conf using a text editor like vim:
vim /opt/rsa/am/server/wrapper/AdminServerWrapper.conf
- Press <i> to enter Insert mode.
- Add the following to the end of the file:
wrapper.java.additional.52=-Dweblogic.configuration.schemaValidationEnabled=false
The number 52 is a unique number to the additional configuration rule. It might need to be changed according to your version.
- Press <Esc> to exit Insert mode.
- Type :wq! and hit Enter to save and exit.
- Restart the Authentication Manager services for the changes to take effect:
/opt/rsa/am/server/rsaserv restart all
- Apply the update normally from your browser.
These changes are temporary. After upgrading to RSA Authentication Manager 8.4, the changes made above are reverted. |