Install > Install the UCMDB Browser on a Different Server than the UCMDB > Install the UCMDB Browser on JBoss 7 Application Server

Install the UCMDB Browser on the Wildfly 11 Application Server

  1. Extract the contents of UCMDB-Browser-<version_number>.<build_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 (_).

  2. Go to the folder where you extracted the contents, and deploy the ucmdb-browser.war file on Wildfly 11.

  3. Go to the folder where you extracted the contents and in the ucmdb_browser_config.xml file (located at <UCMDB_Browser_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
  4. 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="<UCMDB_Browser_installation_folder>"/>
         </system-properties>
         
         <management>...</management>
         ...
    </server>

    where "<UCMDB_Browser_installation_folder>" is the root folder to which you extracted the contents of the installation zip file in step 1.

  5. Restart the Wildfly 11 application server.
  6. 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.

  7. If you performed the previous step, restart the Wildfly 11 application server.