MySQL Cluster Manager 1.3 Release Notes
list hosts site_name
The list hosts
command is used to obtain a
list of the hosts comprising a given management site. The
command requires a single argument, the name of the site to be
examined. For each host listed, the information returned
includes the hostname, status, and version of the management
agent software in use, as shown in this example:
mcm> list hosts mysite;
+-----------+-----------+---------+
| Host | Status | Version |
+-----------+-----------+---------+
| tonfisk | Available | 1.3.6 |
+-----------+-----------+---------+
| flundra | Available | 1.3.6 |
+-----------+-----------+---------+
2 rows in set (0.16 sec)
If you omit the site_name
argument,
the command fails with an error, as shown here:
mcm> list hosts;
ERROR 6 (00MGR): Illegal number of operands
Using the --verbose
option (short form :
-v
) causes the command to print additional
information on the hosts:
mcm> list hosts --verbose mysite;
+---------+-----------+---------+-------+---------+-------------------------------+
| Host | Status | Version | Cores | Memory | OS |
+---------+-----------+---------+-------+---------+-------------------------------+
| tonfisk | Available | 1.3.6 | 1 | 1819 Mb | Linux 3.13.11-100.fc19.x86_64 |
| flundra | Available | 1.3.6 | 1 | 1819 Mb | Linux 3.13.11-100.fc19.x86_64 |
+---------+-----------+---------+-------+---------+-------------------------------+
2 rows in set (0.07 sec)