As the message states, the JVM ignores the unsupported option. Likewise, you can safely ignore the warning message.
To avoid/prevent the warning message, you need to remove the unsupported option from the JVM arguments.
For runtime nodes, use the AMX Administrator UI:
- Infrastructure > Nodes
- select BPM Node
- go to the Configuration tab
- click link for JVM Configuration
- in the General Args field, locate and delete any unsupported JVM options mentioned in the logs. Note: JVM options are typically prefixed -X or -XX (prefix may not be shown in the warning message)
For TCT, you must edit the
.ini file directly
: TIBCO_HOME/tct/1.4/TIBCOConfigurationTool.iniYou may find the unsupported option specified twice here, in different formats:
…
--launcher.XXMaxPermSize
256m
…
-XX:MaxPermSize=256m
…
Note: arguments of JVM options for the launcher are given on separate lines. Be sure to remove the argument as well as the option.Delete both options, then save the file.