Adding server bundle properties
Use Maximo® Application Suite to add or update server bundle properties.
Procedure
- In Maximo Application Suite, click the Administration icon.
- From the side navigation menu, select Workspace.
- On the Workspace page, click the Manage tile.
- On the Manage workspace details page, click Actions and then click Update configuration.
- In the Update Manage configuration dialog, in the Activation configuration section, click the Edit icon for Server bundles.
- In the Server bundles section, click View for the server to which you want to add properties.
- In the Additional server bundle properties dialog, in the Bundle level properties section, add the bundle-specific properties .
- Click Save.
- Click Activate to activate your changes.
- Validate the bundle-level properties by using the following API
call.
Sample custom resource:{UI_SERVER_URL}/api/service/system?action=wsmethod:getProperty&propName=mxe.int.webappurl&apikey={API KEY}
{ "spec": { "bindings": { "jdbc": "workspace-application" }, "components": { "base": { "version": "latest" } }, "settings": { "db": { "maxinst": { "bypassUpgradeVersionCheck": false, "db2Vargraphic": true, "demodata": false, "indexSpace": "maximo", "tableSpace": "maximo" }, "dbSchema": "MAXIMO" }, "deployment": { "serverBundles": [ { "bundleType": "ui", "isDefault": true, "name": "default", "replica": 1, "routeSubDomain": "ui", "bundleLevelProperties": "mxe.int.webappurl=http://localhost/ui\nmxe.webclient.activitydashboard=TRUE" }, { "": "cron", "replica": 1, "bundleType": "cron", "isDefault": false, "routeSubDomain": "cron", "bundleLevelProperties": "mxe.int.webappurl=http://localhost/cron\nmxe.cronTaskMonitorInterval=30" }, { "name": "report", "replica": 1, "bundleType": "report", "isDefault": false, "routeSubDomain": "report", "bundleLevelProperties": "mxe.report.reportsInAPage=10\nmxe.int.webappurl=http://localhost/report" }, { "name": "mea", "replica": 1, "bundleType": "mea", "isDefault": false, "routeSubDomain": "mea", "bundleLevelProperties": "mxe.adminEmail=email@ibm.com\nmxe.int.webappurl=http://localhost/meaweb" } ] } } } }