Spec-Zone .ru
спецификации, руководства, описания, API

4.3.4. mysqld_multi — Manage Multiple MySQL Servers

mysqld_multi is designed to manage several mysqld processes that listen for connections on different Unix socket files and TCP/IP ports. It can start or stop servers, or report their current status.

mysqld_multi searches for groups named [mysqldN] in my.cnf (or in the file named by the --config-file option). N can be any positive integer. This number is referred to in the following discussion as the option group number, or GNR. Group numbers distinguish option groups from one another and are used as arguments to mysqld_multi to specify which servers you want to start, stop, or obtain a status report for. Options listed in these groups are the same that you would use in the [mysqld] group used for starting mysqld. (See, for example, Section 2.10.1.2, "Starting and Stopping MySQL Automatically".) However, when using multiple servers, it is necessary that each one use its own value for options such as the Unix socket file and TCP/IP port number. For more information on which options must be unique per server in a multiple-server environment, see Section 5.6, "Running Multiple MySQL Instances on One Machine".

To invoke mysqld_multi, use the following syntax:

shell> mysqld_multi [options]
        {start|stop|reload|report} [GNR[,GNR] ...]

start, stop, reload (stop and restart), and report indicate which operation to perform. (reload is available as of MySQL 5.6.3.) You can perform the designated operation for a single server or multiple servers, depending on the GNR list that follows the option name. If there is no list, mysqld_multi performs the operation for all servers in the option file.

Each GNR value represents an option group number or range of group numbers. The value should be the number at the end of the group name in the option file. For example, the GNR for a group named [mysqld17] is 17. To specify a range of numbers, separate the first and last numbers by a dash. The GNR value 10-13 represents groups [mysqld10] through [mysqld13]. Multiple groups or group ranges can be specified on the command line, separated by commas. There must be no whitespace characters (spaces or tabs) in the GNR list; anything after a whitespace character is ignored.

This command starts a single server using option group [mysqld17]:

shell> mysqld_multi start 17

This command stops several servers, using option groups [mysqld8] and [mysqld10] through [mysqld13]:

shell> mysqld_multi stop
        8,10-13

For an example of how you might set up an option file, use this command:

shell> mysqld_multi --example

mysqld_multi searches for option files as follows:

Option files read are searched for [mysqld_multi] and [mysqldN] option groups. The [mysqld_multi] group can be used for options to mysqld_multi itself. [mysqldN] groups can be used for options passed to specific mysqld instances.

The [mysqld] or [mysqld_safe] groups can be used for common options read by all instances of mysqld or mysqld_safe. You can specify a --defaults-file=file_name option to use a different configuration file for that instance, in which case the [mysqld] or [mysqld_safe] groups from that file will be used for that instance.

mysqld_multi supports the following options.

Some notes about mysqld_multi:

The following example shows how you might set up an option file for use with mysqld_multi. The order in which the mysqld programs are started or stopped depends on the order in which they appear in the option file. Group numbers need not form an unbroken sequence. The first and fifth [mysqldN] groups were intentionally omitted from the example to illustrate that you can have "gaps" in the option file. This gives you more flexibility.

# This file should probably be in your home dir (~/.my.cnf)# or /etc/my.cnf# Version 2.1 by Jani Tolonen[mysqld_multi]mysqld     = /usr/local/bin/mysqld_safemysqladmin = /usr/local/bin/mysqladminuser       = multi_adminpassword   = multipass[mysqld2]socket     = /tmp/mysql.sock2port       = 3307pid-file   = /usr/local/mysql/var2/hostname.pid2datadir    = /usr/local/mysql/var2language   = /usr/local/share/mysql/englishuser       = john[mysqld3]socket     = /tmp/mysql.sock3port       = 3308pid-file   = /usr/local/mysql/var3/hostname.pid3datadir    = /usr/local/mysql/var3language   = /usr/local/share/mysql/swedishuser       = monty[mysqld4]socket     = /tmp/mysql.sock4port       = 3309pid-file   = /usr/local/mysql/var4/hostname.pid4datadir    = /usr/local/mysql/var4language   = /usr/local/share/mysql/estoniauser       = tonu[mysqld6]socket     = /tmp/mysql.sock6port       = 3311pid-file   = /usr/local/mysql/var6/hostname.pid6datadir    = /usr/local/mysql/var6language   = /usr/local/share/mysql/japaneseuser       = jani

See Section 4.2.3.3, "Using Option Files".