Visor 'config' command implementation.
Visor 'config' command implementation.
When using this command from Scala code (not from REPL) you need to make sure to
properly import all necessary typed and implicit conversions:
<ex>
import org.gridgain.visor._
import commands.config.VisorConfigurationCommand._
</ex>
Note that VisorConfigurationCommand object contains necessary implicit conversions so that
this command would be available via visor keyword.
+-------------------------------------+ | config | Prints node configuration. | +-------------------------------------+
config
config "{-id=|id8=}" -id=<node-id>
Full node ID. Either '-id8' or '-id' can be specified.
If neither is specified - command starts in interactive mode.
-id8=<node-id8>
Node ID8. Either '-id8' or '-id' can be specified.
If neither is specified - command starts in interactive mode.config "-id8=12345678" Prints configuration for node with '12345678' ID8. config Starts command in interactive mode.
Companion object that does initialization of the command.
Overview
Visor 'config' command implementation.
Help
Specification
config config "{-id=|id8=}" Arguments
-id=<node-id> Full node ID. Either '-id8' or '-id' can be specified. If neither is specified - command starts in interactive mode. -id8=<node-id8> Node ID8. Either '-id8' or '-id' can be specified. If neither is specified - command starts in interactive mode.Examples