JVM Settings

  1. Navigate to /path/to/ibm-liberty/IBM/WebSphere/Liberty/usr/servers/AdminConsole.

  2. Create a filename with 'jvm.options' and append the below content.

Note: Copy the text below to a text editor and make the necessary changes there, then copy and paste it into the file above.

#-agentlib:jdwp=transport=dt_socket,server=y,address=<FQDN>:5388

Note: In case of server debug, uncomment the "-agentlib:jdwp" parameter from the jvm.properties file.

Configure the Listening Port

Refer to the above attached AdminConsole's 'server.xml' file for the ListenPort configurations under the 'httpEndpoint' section.

Port

<!-- To access this server from a remote client add a host attribute to the following element, e.g. host="*" -->

<httpEndpoint id="defaultHttpEndpoint" host="*" httpPort="9380" httpsPort="9343" />

Configure the Data Sources

Refer to the above attached AdminConsole's 'server.xml' file for the Datasource configurations under the 'datasource' section.

Data Source

<dataSource id="ADMINCONSOLEDS" jndiName="ADMINCONSOLEDS" transactional="false" type="com.ibm.db2.jcc.DB2Driver"> <jdbcDriver libraryRef="jdbcLib"/> <properties.db2.jcc serverName="fsgbu-mum-146.snbomprshared1.gbucdsint02bom.oraclevcn.com" portNumber="50002" databaseName="ACONSOLE" password="0Ipa@123" user="aconsole" driverType="4" /> </dataSource> <!-- Any External jar if needed--> <library id="jdbcLib"> <file name="/scratch/oipa/externallibs/db2jcc4.jar"/> </library>