Table of Contents
- 4.1 Online Help and Information Commands
- 4.2 MySQL Cluster Manager Site and Agent Commands
- 4.2.1 The add hostsCommand
- 4.2.2 The remove hostsCommand
- 4.2.3 The change log-levelCommand
- 4.2.4 The rotate logCommand
- 4.2.5 The collect logsCommand
- 4.2.6 The create siteCommand
- 4.2.7 The delete siteCommand
- 4.2.8 The list sitesCommand
- 4.2.9 The list hostsCommand
- 4.2.10 The show settingsCommand
- 4.2.11 The stop agentsCommand
- 4.2.12 The versionCommand
- 4.2.13 The show warningsCommand
 
- 4.2.1 The 
- 4.3 MySQL Cluster Manager Package Commands
- 4.4 MySQL Cluster Manager Cluster Commands
- 4.4.1 The create clusterCommand
- 4.4.2 The delete clusterCommand
- 4.4.3 The list clustersCommand
- 4.4.4 The list nextnodeidsCommand
- 4.4.5 The restart clusterCommand
- 4.4.6 The show statusCommand
- 4.4.7 The start clusterCommand
- 4.4.8 The stop clusterCommand
- 4.4.9 The autotuneCommand
- 4.4.10 The upgrade clusterCommand
 
- 4.4.1 The 
- 4.5 MySQL Cluster Manager Configuration Commands
- 4.6 MySQL Cluster Manager Process Commands
- 4.7 MySQL Cluster Manager Backup and Restore Commands
- 4.8 MySQL Cluster Manager Cluster Importation Commands
Identifiers in client commands
Case-sensitivity rules for client commands
Options common to client commands
The sections in this chapter describe commands used in the MySQL Cluster Manager 1.4.8 client for tasks such as defining sites, packages, and MySQL NDB Cluster instances (“clusters”); configuring a MySQL NDB Cluster; and getting the status of a running MySQL NDB Cluster. These commands are issued to the management agent using the mysql client program included with the MySQL NDB Cluster distribution (for information about the mysql client not specific to using MySQL Cluster Manager, see mysql — The MySQL Command-Line Client). Each MySQL Cluster Manager client command takes the form shown here:
instruction [options] [arguments]
options:
    option [option] [...]
option:
        --option-long-name[=value-list]
    |   -option-short-name [value-list]
value-list:
    value[,value[,...]]
arguments:
    argument [argument] [...]
    Consider the following MySQL Cluster Manager command, which starts a MySQL NDB Cluster named
    mycluster and backgrounds the deletion process so
    that the client can be used to execute other commands in the
    meantime, without having to wait on the start
    cluster command to complete:
  
start cluster --background mycluster;
    In this example, the command contains a start
    cluster instruction. An instruction consists of one or two
    keywords, such as set, or show
    status. This instruction is modified by the
    --background option, which
    follows it; however, this option assigns no values.
  
    Most command options have short forms, consisting of single letters,
    in addition to their long forms. Using the short form of the
    --background option, the
    previous example could also be written like this:
  
start cluster -B mycluster;
    The long form of an option must be preceded by a double dash
    (--), and is not case-sensitive (lower case being
    the canonical form). The short form of an option must be preceded by
    a single dash (-), and is case-sensitive. In
    either case, the dash character or characters must come immediately
    before the option name, and there must be no space characters
    between them. Otherwise, the MySQL Cluster Manager client cannot parse the command
    correctly. More information about long and short forms of options is
    given later in this section.
Do not confuse options given to MySQL Cluster Manager client commands with mysql client options. A MySQL Cluster Manager client command option is always employed as part of a MySQL Cluster Manager client command; it is not passed to the mysql client when invoking it.
In addition, you cannot issue queries or other SQL statements in the MySQL Cluster Manager client. These are not recognized by the client, and are rejected with an error. The converse of this is also true: MySQL Cluster Manager client commands are not recognized by the standard mysql client.
    The instruction just shown takes the argument
    mysite. The argument is usually an identifier
    that names the object to be effected; in this case, the command
    deletes the site whose name matches the argument. (For more
    information, see Section 4.2.6, “The create site Command”.)
  
    An additional --verbose option can be used for the
    create cluster
    ,add process, and
    list hosts commands. In both cases,
    using the option causes the command to return a list of the MySQL NDB Cluster
    processes affected by the command; this includes their node IDs,
    process types, and the hosts where they are located.
  
Identifiers in client commands. A legal MySQL Cluster Manager identifier consists of any sequence of characters from among the following:
- The letters - athrough- zand- Athrough- Z
- The digits - 0through- 9
- The dash ( - -), period (- .), and underscore (- _) characters
A MySQL Cluster Manager identifier must begin with a letter or digit.
Case-sensitivity rules for client commands. The rules for case-sensitivity of MySQL Cluster Manager identifiers, commands, command options, process names, and configuration attributes are as follows:
- Identifiers are case-sensitive. For example, - delete site myclustercannot be used to delete a site named- myCluster.
- Command keywords and the long forms of command options are case-insensitive. For example, any of the three commands - delete cluster mycluster,- DELETE CLUSTER mycluster, and- DeLeTe cLuStEr myclusterworks to delete the MySQL NDB Cluster instance named- mycluster.- In this manual, we show command keywords and the long forms of command options in lowercase, but you are not required to follow this convention if you do not wish to do so. 
- The short forms of command options are case-sensitive. For example, - -b(lowercase) is the short form of the- --basediroption, but- -B(uppercase) is the short form of the- --backgroundoption.
- Names of MySQL NDB Cluster processes are case-insensitive. For example, either of the commands - get --include-defaults DataMemory:ndbd myclusteror- get --include-defaults datamemory:NDBD myclusterreports the data memory allocated for each ndbd process in the cluster named- mycluster.- In this manual, we show names of MySQL NDB Cluster processes in lowercase. You are not required to follow this convention if you do not wish to do so; however, since the corresponding executables are named and must be invoked in lowercase, we suggest that you use lowercase. 
- Configuration attribute names are case-insensitive. For example, either of the commands - get --include-defaults DataMemory:ndbd myclusteror- get --include-defaults datamemory:ndbd myclusterreturns the data memory allocated for each ndbd process in the cluster named- mycluster; either of the commands- set engine-condition-pushdown:mysqld:4=0 myclusteror- set Engine-Condition-Pushdown:mysqld:4=0 myclusterdisables the condition pushdown optimization in the mysqld process having the node ID- 4in the MySQL NDB Cluster named- mycluster.Note- Configuration attributes in the MySQL Cluster Manager derive from two different sources: MySQL NDB Cluster configuration parameters, and MySQL Server options. MySQL NDB Cluster configuration parameters are case-insensitive, but their canonical forms use upper camelcase (that is, medial capitalization including the first letter). This means that whether you set a value for data memory using the MySQL Cluster Manager client or in the - config.inifile, you can refer to it as- DataMemory,- datamemory, or- dATAmEMORYwithout any negative impact. However, MySQL Server command-line options are case-sensitive and use only lowercase. This means that, for example,- set Engine-Condition-Pushdown:mysqld:4=0 myclusterin the MySQL Cluster Manager client works to disable condition pushdown in the indicated mysqld process, but if you invoke the mysqld executable from a system prompt using- --Engine-Condition-Pushdown=0, mysqld fails to start.- In this manual, for easy recognition, we show configuration attribute names as having the same lettercase used in other MySQL documentation; thus, we always refer to - DataMemory, rather than- datamemoryor- DATAMEMORY, and- engine-condition-pushdown, rather than- Engine-Condition-Pushdownor- ENGINE-CONDITION-PUSHDOWN. While you are not required to do this when using MySQL Cluster Manager, we suggest that you also follow this convention.
      Values that contain space characters must be quoted using single
      quote (') characters. For example, if you wish
      to define a package named mypackage for a site
      named mysite using /usr/local/mysql
      cluster/7.3 (where a space occurs between
      mysql and cluster) as the
      path to the base directory on all hosts, the correct command would
      be add package
      --basedir='/usr/local/mysql cluster/7.3' mypackage.
    
To decrease the possibility of errors in reading and entering MySQL Cluster Manager commands, we recommend avoiding the use of space characters whenever possible.
    Each command must end with a terminator character. By default, this
    is the semicolon (;) character. However, the
    sequences \g and \G are also
    supported as command terminators. The \G
    terminator causes the output to be vertically formatted (the same as
    in the standard mysql client), as shown in this
    example:
  
mcm> get DataMemory mycluster\G
*************************** 1. row ***************************
    Name: DataMemory
   Value: 500M
Process1: ndbd
     Id1: 2
Process2:
     Id2:
   Level: Process
 Comment:
*************************** 2. row ***************************
    Name: DataMemory
   Value: 500M
Process1: ndbd
     Id1: 3
Process2:
     Id2:
   Level: Process
 Comment:
2 rows in set (0.22 sec)
    By convention (for reasons of readability), we do not normally
    include the command terminator when showing the syntax for a command
    in Backus-Naur format or when including a MySQL Cluster Manager command inline in
    this text. However, if you do not use a statement terminator when
    you enter the command in the MySQL Cluster Manager client, the client displays a
    special “waiting...” prompt ->
    until you supply a terminator, as shown here:
  
mcm> list sites
  ->
  ->
  ->
  -> ;
Empty set (1.50 sec)(The is the same as the behavior of the mysql client when you fail to end a statement with a terminator.)
    A command option can also in many cases accept (or even require) a
    set of one or more values. The next
    example includes such an option, and also demonstrates setting of
    multiple values in a single option by passing them to the option as
    a comma-separated list:
  
mcm> create site --hosts=tonfisk,flundra mysite;
+---------------------------+
| Command result            |
+---------------------------+
| Site created successfully |
+---------------------------+
1 row in set (7.41 sec)
    The command just shown creates a site named
    mysite, consisting of two hosts named
    tonfisk and flundra. (See
    Section 4.2.6, “The create site Command”, for more information about this
    command.) Since we used the long form of the
    --hosts option, we were required to use an equals
    sign (=) to mark the end of the option name and
    the beginning of the values list. You must not insert any space
    characters before or after the equal sign; doing so causes an error,
    as shown here:
  
mcm> create site --hosts =grindval,haj yoursite;
ERROR 7 (00MGR): Option --hosts requires a value
mcm> create site --hosts= grindval,haj yoursite;
ERROR 7 (00MGR): Option --hosts requires a value
    The short form of an option does not use an equal sign. Instead, the
    value-list is separated from the option by a space. Using the
    -h option, which is the short form of the
    --hosts option, the previous
    create site command can be entered
    and executed like this:
  
mcm> create site -h tonfisk,flundra mysite;
+---------------------------+
| Command result            |
+---------------------------+
| Site created successfully |
+---------------------------+
1 row in set (7.41 sec)The short forms of options actually accept multiple spaces between the option name and the values list; however, a single space is sufficient. If you omit the space, or try to use an equal sign, the command fails with an error, as shown here:
mcm> create site -htonfisk,flundra mysite;
ERROR 6 (00MGR): Illegal number of operands
mcm> create site -h=tonfisk,flundra mysite;
ERROR 3 (00MGR): Illegal syntax
    Any option value containing one or more whitespace characters, one
    or more dash characters (-), or both, must be
    quoted using single quotation marks. Multiple values should be
    separated by commas only; do not insert spaces before or after any
    of the commas. Using spaces before or after the commas in a list of
    values causes the command to fail with an error, as shown here:
  
mcm> create site --hosts=tonfisk, flundra mysite;
ERROR 6 (00MGR): Illegal number of operandsAs you can see from the examples just shown, a MySQL Cluster Manager client command returns a result set, just as an SQL statement does in the standard mysql client. The result set returned by a MySQL Cluster Manager client command consists of one of the following:
- A single row that contains a message indicating the outcome of the command. The - create sitecommand in the last example returned the result- Site created successfully, to inform the user that the command succeeded.
- One or more rows listing requested objects or properties. An example of such a command is - list processes, as shown here:- mcm> list processes mycluster; +--------+----------+----------+ | NodeId | Name | Host | +--------+----------+----------+ | 49 | ndb_mgmd | flundra | | 1 | ndbd | tonfisk | | 2 | ndbd | grindval | | 50 | mysqld | haj | | 51 | mysqld | torsk | | 52 | ndbapi | * | +--------+----------+----------+ 6 rows in set (0.03 sec)- In the case of - list processes, each row in the result contains the ID and type of a node in the MySQL NDB Cluster named- mycluster, together with the name of the host on which the process is running.
- An empty result set. This can occur with one of the - listcommands when there is nothing to report, such as when- list sitesis used before any sites have been created:- mcm> list sites; Empty set (0.72 sec)
Each command must be entered separately; it is not possible to combine multiple commands on a single line.
Options common to client commands. The following three options are common to most MySQL Cluster Manager client commands:
- --help(short form:- -?): Common to all client commands. Provides help output specific to the given command. See Section 4.1, “Online Help and Information Commands”, for more information about this option.
- --force(short form- -f): Causes any safety checks to be bypassed when executing the command. For example,- delete clusternormally fails if any of the MySQL NDB Cluster processes in the MySQL NDB Cluster named- mycluster- myclusterare running; however,- delete cluster --forceforces the shutdown of- mycluster- mycluster, followed by the deletion of- myclusterfrom MySQL Cluster Manager's inventory.- The - --forceoption is supported for the following MySQL Cluster Manager client commands:
- --background(short form- -B): Rather than waiting for the command to complete, the MySQL Cluster Manager client immediately returns the command prompt, allowing you to perform additional tasks in the client while that command continues to execute in the background. This can be useful when executing commands that might require some time to complete (such as starting a cluster with a great many nodes).- This option is supported by all client commands except for - create site,- delete site,- add hosts,- add package, and- delete package.