To start the MySQL Cluster Manager agent manually on a Windows host, you should
invoke mcmd.exe, found in the
bin
directory under the manager
installation directory on that host. If the configuration
file's location is not specified with the
--config
option, mcmd looks for the
file at its default locations (see
Section 3.4, “MySQL Cluster Manager Configuration File” for details).
Typical options for mcmd are shown here:
mcmd[.exe] [--config=filename | --bootstrap]
For information about additional options that can be used with mcmd on the command line or in an option file, see Section 4.1, “mcmd, the MySQL Cluster Manager Agent”.
By default, the agent assumes that the agent configuration file
is mcmd.conf
in the MySQL Cluster Manager installation
directory (see Section 3.4, “MySQL Cluster Manager Configuration File”
for more details). You can tell the agent to use a different
configuration file by passing the path to this file to the
--config
option, as shown here:
C:\Program Files (x86)\MySQL\MySQL Cluster Manager 9.1.0\bin>
mcmd --config="C:\Program Files (x86)\MySQL\MySQL Cluster Manager 9.1.0\etc\mcmd.ini"
The --bootstrap
option causes the
agent to start with default configuration values, create a
default one-machine cluster named mycluster
,
and start it. The use of this option with
mcmd is shown here on a system having the
host name torsk
, where MySQL Cluster Manager has been
installed to the default location:
C:\Program Files\MySQL\MySQL Cluster Manager 9.1.0\bin>mcmd --bootstrap
MySQL Cluster Manager 9.1.0 started
Connect to MySQL Cluster Manager by running "C:\Program Files\MySQL\MySQL Cluster Manager 9.1.0\bin\mcm" -h TORSK -P 1862
Configuring default cluster 'mycluster'...
Starting default cluster 'mycluster'...
Cluster 'mycluster' started successfully
ndb_mgmd TORSK:1186
ndbd TORSK
ndbd TORSK
mysqld TORSK:3306
mysqld TORSK:3307
ndbapi *
Connect to the database by running "C:\Program Files\MySQL\MySQL Cluster Manager 9.1.0\cluster\bin\mysql" -h TORSK -P 3306 -u root
You can then connect to the agent using the mcm client (see Section 4.3, “Starting the MySQL Cluster Manager Client”), and to either of the MySQL Servers running on ports 3306 and 3307 using mysql or another MySQL client application.
When starting the MySQL Cluster Manager agent for the first time, you may see one or more Windows Security Alert dialogs. You should grant permission to connect to private networks for any of the programs mcmd.exe, ndb_mgmd.exe, ndbd.exe, ndbmtd.exe, or mysqld.exe. To do so, check the Private Networks... box and then click the button. It is generally not necessary to grant MySQL Cluster Manager or MySQL NDB Cluster access to public networks such as the Internet.
See Section 4.1, “mcmd, the MySQL Cluster Manager Agent”, for more information about options that can be used with mcmd.
The MySQL Cluster Manager agent must be started on each host in the MySQL NDB Cluster to be managed.
It is possible to install MySQL Cluster Manager as a Windows service, so that it is started automatically each time Windows starts. See Section 3.3.2.1, “Installing the MySQL Cluster Manager Agent as a Windows Service”.
To stop one or more instances of the MySQL Cluster Manager agent, use the
stop agents
command in the
MySQL Cluster Manager client. You can also stop an agent process using the
Windows Task Manager. In addition, if you have installed MySQL Cluster Manager
as a Windows service, you can stop (and start) the agent using
the Windows Service Manager, CTRL-C
, or the
appropriate SC STOP
(or SC
START
) or NET STOP
(or NET
START
) command. See
Starting and stopping the MySQL Cluster Manager agent Windows service,
for more information about each of these options.