Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FISH-1171 FISH-1172 FISH-1181 FISH-1182 Enabled No Longer Mandatory and Fix Conflicting Param Names #138

Merged
merged 4 commits into from
Mar 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ To configure the Notification Service from the command line, use the

[source, shell]
----
asadmin> set-snmp-notifier-configuration --enabled=true --dynamic=true --hostname=localhost --port=162 --community=public --oid=".1.3.6.1.2.1.1.8" --version=v2c
asadmin> set-snmp-notifier-configuration --enabled=true --dynamic=true --hostname=localhost --snmpport=162 --community=public --oid=".1.3.6.1.2.1.1.8" --version=v2c
----

You can use the `--enabled` and `--dynamic` options to enable or disable
Expand All @@ -169,7 +169,7 @@ below for an example:

[source, shell]
----
Enabled Noisy Community OID Version Host Port
Enabled Noisy Community OID Version Host SNMP Port
true false example .1.3.6.1.2.1.1.8 v2c 127.0.0.1 162
----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ configuration options like this:

[source, shell]
----
asadmin> set-xmpp-notifier-configuration --enabled=true --dynamic=true --hostname="172.28.128.3" --port=5222 --username="payara_notifier" --password="******" --securityDisabled=false --roomid=server
asadmin> set-xmpp-notifier-configuration --enabled=true --dynamic=true --hostname="172.28.128.3" --xmppport=5222 --username="payara_notifier" --password="******" --securityDisabled=false --roomid=server
----

You can use the `--enabled` and `--dynamic` options to enable or disable
Expand All @@ -205,8 +205,8 @@ using the `get-xmpp-notifier-configuration` asadmin command like this:
----
asadmin > get-xmpp-notifier-configuration

Enabled Noisy Host Port Service Name Username Password Security Disabled Room ID
true false 172.28.128.3 5222 conference.payara.fish payara_notifier payara true server
Enabled Noisy Host XMPP Port Service Name Username Password Security Disabled Room ID
true false 172.28.128.3 5222 conference.payara.fish payara_notifier payara true server
----

[[on-the-domain.xml-configuration-file]]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ This command can be used to set the configuration settings of the service.
[cols=",,a,,",options="header",]
|=======================================================================
|Option |Type |Description |Default |Mandatory
|`--enabled` |Boolean |Enables or disables the service |false |Yes
|`--enabled` |Boolean |Enables or disables the service |false |No
|`--dynamic` |Boolean |Whether to apply changes immediately of after a domain restart. |false |No
|`--auditLevel` |String | Sets the auditing level. One of:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Enables and disables the HealthCheck service. This includes configuration for tr
|Boolean
|Whether to enable or disable the service
|N/A
|yes
|no

|`--historic-trace-enabled`
|Boolean
Expand Down