This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [standalone@localhost:9990 /] data-source add --help | |
| DESCRIPTION: | |
| Add a new data-source | |
| REQUIRED ARGUMENTS: | |
| --name - Required argument in commands which identifies |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [standalone@localhost:9990 /] xa-data-source add --help | |
| DESCRIPTION: | |
| Add a new XA data-source (unlike the add operation, this command accepts | |
| xa-datasource-properties). | |
| REQUIRED ARGUMENTS: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [standalone@localhost:9990 /] /subsystem=datasources:read-resource | |
| { | |
| "outcome" => "success", | |
| "result" => { | |
| "data-source" => { | |
| "ExampleDS" => undefined, | |
| "MySqlDS" => undefined | |
| }, | |
| "jdbc-driver" => { | |
| "h2" => undefined, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [standalone@localhost:9990 /] data-source test-connection-in-pool --name=MySqlDS | |
| true | |
| [standalone@localhost:9990 /] xa-data-source test-connection-in-pool --name=XAMySqlDS | |
| true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [standalone@localhost:9990 /] data-source read-resource --name=MySqlDS\ | |
| --include-runtime=true --recursive=true | |
| allocation-retry=n/a | |
| allocation-retry-wait-millis=n/a | |
| allow-multiple-users=false | |
| background-validation=n/a | |
| background-validation-millis=n/a | |
| blocking-timeout-wait-millis=n/a | |
| capacity-decrementer-class=n/a | |
| capacity-decrementer-properties=n/a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ... | |
| <profile> | |
| ... | |
| <subsystem xmlns="urn:jboss:domain:undertow:3.0"> | |
| ... | |
| <server name="default-server"> | |
| ... | |
| <host name="default-host" alias="localhost"> | |
| ... | |
| <filter-ref name="request-dumper"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 20:35:44,466 INFO [io.undertow.request.dump] (default task-1) | |
| ----------------------------REQUEST--------------------------- | |
| URI=/ | |
| characterEncoding=null | |
| contentLength=-1 | |
| contentType=null | |
| header=Accept=*/* | |
| header=User-Agent=curl/7.43.0 | |
| header=Host=localhost:8080 | |
| locale=[] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ... | |
| <profile> | |
| ... | |
| <subsystem xmlns="urn:jboss:domain:undertow:3.0"> | |
| ... | |
| <server name="default-server"> | |
| ... | |
| <host name="default-host" alias="localhost"> | |
| ... | |
| <access-log use-server-log="true" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 11:24:20,338 INFO [io.undertow.accesslog] (default task-8) localhost\ | |
| [04/Aug/2016:11:24:20 -0400] "GET / HTTP/1.1" 200 "curl/7.43.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /subsystem=undertow/server=default-server/host=default-host/setting=access-log:\ | |
| add(pattern="%h %t \"%r\" %s \"%{i,User-Agent}\"", use-server-log=true) |