Deleting JVM Properties of a Host Through the CLI
- Procedure
- Navigate to
admin sample
folder of CONFIG_HOME or TIBCO_HOME. - Add the details of the Host to be modified in the
host_data.xml
. - Add the attribute
jvmArgs
in the<Host>
tag ofhost_data.xml
. This attribute is case-sensitive. Provide all the JVM-specific or user-specific properties within quotes as shown in the below example. - Add the attribute
options="deleteJvmArgs"
to the "update
" target ofhost_build.xml
.
Example: Host_build.xml
<target name="update"> <AMXAdminTask remote="true" propsFile="${instanceProperties}" action="edit" dataFile="${dataFile}" objectSelector="Host" overwrite="true" merge="true" createIfNotExists="true" force="true" options="deleteJvmArgs" failOnError="false"/> </target>
Example: host_data.xml
<Host xsi:type="amxdata:Host" name="SecondHost" description="Description for SecondHost" hostType="TibcoHost" sourceHost="SystemHost" windowsService="true" jvmArgs="-Xmx512m -Xms128m -XX:+HeapDumpOnOutOfMemoryError -Dprop1=value1" managementUrl="service:jmx:jmxmp://localhost:36923" assignToEnvs="ALL">