jboss-cli.xml 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version='1.0' encoding='UTF-8'?>
  2. <!--
  3. JBoss AS7 Command-line Interface configuration.
  4. -->
  5. <jboss-cli xmlns="urn:jboss:cli:1.1">
  6. <!-- The default controller to connect to when 'connect' command is executed w/o arguments -->
  7. <default-controller>
  8. <host>localhost</host>
  9. <port>9999</port>
  10. </default-controller>
  11. <validate-operation-requests>true</validate-operation-requests>
  12. <!-- whether to resolve system properties specified as command argument or operation parameter values
  13. in the CLI VM before sending the operation requests to the controller -->
  14. <resolve-parameter-values>false</resolve-parameter-values>
  15. <!-- Command and operation history log configuration -->
  16. <history>
  17. <enabled>true</enabled>
  18. <file-name>.jboss-cli-history</file-name>
  19. <file-dir>${user.home}</file-dir>
  20. <max-size>500</max-size>
  21. </history>
  22. <!-- Whether to write info and error messages to the terminal output -->
  23. <silent>false</silent>
  24. </jboss-cli>