Enabling or Disabling the Node Features using the tibcohost.exe Command
The tibcohost.exe command line tool is used for starting and managing a TIBCO Host instance.
The provisionProductFeature command is used to provision (enable) or unprovision (disable) any Feature on a node. Run the provisionProductFeature command of tibcohost.exe from CONFIG_HOME\tibcohost\Admin-enterpriseName-adminServerName\host\bin directory.
You can find Feature ID and Feature version from the Feature list in the Infrastructure > Software Management > Features tab of ActiveMatrix Administrator.
To enable Feature on a Node use
enable
option:
tibcohost.exe provisionProductFeatures -nodeName Node1 -enable myTestProject.customfeature.id :1.0.0.v2016-01-15-1135
The enable
option adds entry of the Feature
myTestProject.customfeature.id
in the
node.xml file located in
<CONFIG_HOME>\tibcohost\<instance_name>\data_3.2.x\nodes\<node_name>\configuration directory.
Sample node.xml:
<enabled-rus> <enabled-ru>myTestProject.customfeature.id :1.0.0.v2016-01-15-1135</enabled-ru> </enabled-rus>
To disable Feature on a Node use
disable
option:
tibcohost.exe provisionProductFeatures -nodeName Node1 -disable jv.helloworld2.soa.customfeature.id :1.0.0.v2017-07-14-1244
The disable
option removes entry of the Feature
jv.helloworld2.soa.customfeature.id
from the
node.xml.
If you are enabling or disabling the Node Features using the tibcohost.exe command, you need to synchronize the Node Feature list in ActiveMatrix Administrator UI with runtime Node Feature list. For more information, see Synchronizing Node Feature List.