Specifying the minimum number of factories for a work unit license
If you have a work unit license, acserverlicense.xml specifies how many work units you have in the LicenseInfo element, as shown in the following code snippet:
<LicenseInfo
BIRTOnlineWorkUnits="16"
DashboardsWorkUnits="8"
BIRTFactoryWorkUnits="1"
ReportStudioWorkUnits="8"
InteractiveCrosstabsWorkUnits="8">
You must inspect acserverlicense.xml to determine the value of BIRTOnlineWorkUnits, and then modify acserverconfig.xml so that the MinFactory setting for the Default BIRT Online resource group is correct. One BIRT Online Factory is required for every 8 BIRT Online work units. For example, if BIRTOnlineWorkUnits is set to 16 in acserverlicense.xml, MinFactory must be set to 2 in acserverconfig.xml, as shown in the following code snippet:
<ServerResourceGroupSetting
Name="Default BIRT Online"
Activate="TRUE"
MinFactory="2"
StartArguments="-Xmx2048M -XX:MaxPermSize=256m -XX:-UsePerfData -Djava.awt.headless=true -Djava.net.preferIPv4Stack=true
-Djava.protocol.handler.pkgs=com.actuate.javaserver.protocol com.actuate.javaserver.Server"/>