123456789101112131415161718192021222324252627282930 |
- <?xml version='1.0' encoding='UTF-8'?>
- <!--
- JBoss AS7 Command-line Interface configuration.
- -->
- <jboss-cli xmlns="urn:jboss:cli:1.1">
- <!-- The default controller to connect to when 'connect' command is executed w/o arguments -->
- <default-controller>
- <host>localhost</host>
- <port>9999</port>
- </default-controller>
-
- <validate-operation-requests>true</validate-operation-requests>
-
- <!-- whether to resolve system properties specified as command argument or operation parameter values
- in the CLI VM before sending the operation requests to the controller -->
- <resolve-parameter-values>false</resolve-parameter-values>
-
- <!-- Command and operation history log configuration -->
- <history>
- <enabled>true</enabled>
- <file-name>.jboss-cli-history</file-name>
- <file-dir>${user.home}</file-dir>
- <max-size>500</max-size>
- </history>
-
- <!-- Whether to write info and error messages to the terminal output -->
- <silent>false</silent>
- </jboss-cli>
|