According to the documentation, if you're upgrading RSA Authentication Manager from 8.3 to 8.4 while using the browser as the update source, you have to first upgrade to 8.3 patch 4 or patch 6 to be able to continue upgrading to 8.4.
However, even with the patch installed when trying to apply the 8.4 update, the following error is received:
Error 413--Request Entity Too Large
Note that during Quick Setup another user name may have been selected. Use that user name to login.
cp /opt/rsa/am/server/config/config.xml /opt/rsa/am/server/config/config.xml.bak
vim /opt/rsa/am/server/config/config.xml
<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>
<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>
cp /opt/rsa/am/server/wrapper/AdminServerWrapper.conf /opt/rsa/am/server/wrapper/AdminServerWrapper.conf.bak
vim /opt/rsa/am/server/wrapper/AdminServerWrapper.conf
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.
/opt/rsa/am/server/rsaserv restart all
These changes are temporary. After upgrading to RSA Authentication Manager 8.4, the changes made above are reverted.