Summary
Question
-
Extract the contents of CMS_UI-<display_version_number>-all-in-one-standalone.zip to an accessible location on a local drive.
Note
The installation directory must not contain spaces, and can use only English letters (a-z), digits (0-9), the hyphen sign ('-'), and the underscore sign (_). -
Go to the folder where you extracted the contents, and deploy the ucmdb-browser.war file on Wildfly 11.
-
Go to the folder where you extracted the contents and in the ucmdb_browser_config.xml file (located at <CMS_UI_installation_folder>/conf) configure the connection to the UCMDB server as follows:
- protocol. CMDB Server protocol
- host_name. CMDB Server name
- host_port. CMDB Server port
-
Add system-properties in the server element in $JBOSS_HOME\standalone\configuration\standalone.xml as follows:
<server ...> <extensions>...</extensions> <system-properties> <property name="ucmdb_browser_home" value="<CMS_UI_installation_folder>"/> </system-properties> <management>...</management> ... </server>
where
"<CMS_UI_installation_folder>"
is the root folder to which you extracted the contents of the installation zip file in step 1. - Restart the Wildfly 11 application server.
-
Optional: If you receive a timeout error message after performing the previous step, add the attribute deployment-timeout="1200" to the deployment-scanner element in $JBOSS_HOME\standalone\configuration\standalone.xml. For example:
<deployment-scanner path="deployments" relative-to="jboss.server.base.dir" scan-interval="5000" deployment-timeout="1200"/>
It is possible to add a timeout value of even more than 1200 if needed.
- If you performed the previous step, restart the Wildfly 11 application server.