Starts or restart one or more nodes on remote host.
Starts or restart one or more nodes on remote host. Uses SSH protocol to execute commands.
<ex>start "-h=uname:passwd@host#3"</ex> Starts three nodes with default configuration (password authentication).
<ex>start "-h=uname@host#3 -k=ssh-key.pem"</ex> Starts three nodes with default configuration (key authentication).
<ex>start "-f=hosts.txt -c=config/spring.xml"</ex>
Reads hosts.txt file and starts nodes with provided configuration.
Command arguments.
Catch point for missing arguments case.
Overview
Contains Visor command
startimplementation.Help
Specification
Arguments
-f=<path> Path to INI file that contains topology specification. -h=<hostname> Hostname where to start nodes. Can define several hosts if their IPs are sequential. Example of range is 192.168.1.100~150, which means all IPs from 192.168.1.100 to 192.168.1.150 inclusively. -p=<num> Port number (default is 22). -u=<username> Username (if not defined, current local username will be used). -pw=<password> Password (if not defined, private key file must be defined). -k=<path> Path to private key file. Define if key authentication is used. -n=<num> Expected number of nodes on the host. If some nodes are started already, then only remaining nodes will be started. If current count of nodes is equal to this number and '-r' flag is not set, then nothing will happen. -g=<path> Path to GridGain installation folder. If not defined, GRIDGAIN_HOME environment variable must be set on remote hosts. -c=<path> Path to configuration file (relative to GridGain home). If not provided, default GridGain configuration is used. -s=<path> Path to start script (relative to GridGain home). Default is "bin/ggstart.sh" for Unix or "bin\ggstart.bat" for Windows. -m=<num> Defines maximum number of nodes that can be started in parallel on one host. This actually means number of parallel SSH connections to each SSH server. Default is 5. -t=<num> Defines connection timeout in milliseconds. Default is 2000. -r Indicates that existing nodes on the host will be restarted. By default, if flag is not present, existing nodes will be left as is.Examples