# mariadb-admin

## Overview

`mariadb-admin` is an administration program for the mariadbd daemon. It can be used to:

* Monitor what the MariaDB clients are doing (processlist);
* Get usage statistics and variables from the MariaDB server;
* Create and drop databases;
* Flush (reset) logs, statistics, and tables;
* Kill running queries;
* Stop the server (shutdown);
* Start and stop replicas;
* Check if the server is alive (ping).

{% tabs %}
{% tab title="Current" %}
The client tool name is `mariadb-admin`. However, it can still be accessed under the old name, `mysqladmin`, via a symlink on Linux or an alternate binary on Windows.
{% endtab %}

{% tab title="< 10.5" %}
The name of the client tool is `mysqladmin`.
{% endtab %}
{% endtabs %}

## Usage

The command to use `mariadb-admin` and the general syntax is:

```
mariadb-admin [options] command [command-arg] [command [command-arg]] ...
```

### Options

`mariadb-admin` supports the following options:

| Option                                              | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| --------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| --character-sets-dir=*dir*                          | Directory where the [character set](https://mariadb.com/docs/server/reference/data-types/string-data-types/character-sets) files are located.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| -C, --compress                                      | Compress all information sent between the client and the server if both support compression.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| --connect\_timeout=*val*                            | Maximum time in seconds before connection timeout. The default value is `43200` (12 hours).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| -c *val*, --count=*val*                             | Number of iterations to make. This works with `-i` (`--sleep`) only.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| -# \[*debug\_options*], --debug\[=*debug\_options*] | Write a debugging log. A typical `debug_options` string is `d:t:o,file_name`. The default is `d:t:o,/tmp/mysqladmin.trace`.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| --debug-check                                       | Check memory and open file usage on exit.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| --debug-info                                        | Print debugging information, memory, and CPU usage statistics when the program exits.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| --default-auth=*plugin*                             | Default authentication client-side plugin to use.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| --default-character-set=*name*                      | Set the default character set.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| -f, --force                                         | Don't ask for confirmation on drop database. With multiple statements, continue even if an error occurs.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| -?, --help                                          | Display help and exit.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| -h *name*, --host=*name*                            | Hostname to connect to.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| -l, --local                                         | Suppress SQL statements from being written to the [binary log](https://mariadb.com/docs/server/server-management/server-monitoring-logs/binary-log), by enabling [sql\_log\_bin=0](https://mariadb.com/docs/server/ha-and-performance/standard-replication/replication-and-binary-log-system-variables) for flush commands, using `FLUSH LOCAL` rather than `SET sql_log_bin=0` . The privilege required is `RELOAD` .                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| -b, --no-beep                                       | Turn off beep on error.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| -p\[*password*], --password\[=*password*]           | Password to use when connecting to server. If password is not given, it's asked from the terminal.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| --pipe, -W                                          | On Windows, connect to the server via a named pipe. This option applies only if the server supports named-pipe connections.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| -P *portnum*, --port=*portnum*                      | <p>Port number to use for the connection.<br>If it's <code>0</code> , do not use the port.</p><p>If it's set, and if <code>$MYSQL\_TCP\_PORT</code> is set, use the port.</p><p>Otherwise, and if <code>/etc/services</code> has a port number specified, use that port number.</p><p>If nothing is set, use the built-in default (<code>3306</code>).</p>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| --protocol={tcp\|socket\|pipe\|memory}              | The protocol to use for the connection (`tcp`, `socket`, `pipe`, `memory`).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| -r, --relative                                      | Show difference between current and previous values when used with `-i`. Only works in combination with `extended-status`.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| -O *val*, --set-variable=*val*                      | Change the value of a variable to *val*. This option is deprecated; you can set variables directly with `--variable-name=`*`val`*.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| --shutdown\_timeout=*val*                           | Maximum number of seconds to wait for server shutdown. The default value is 3600 (1 hour).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| -s, --silent                                        | Silently exit if you can't connect to server.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| -i *delay*, --sleep=*delay*                         | Execute commands repeatedly, sleeping for *delay* seconds in between. The `--count` option determines the number of iterations. If `--count` is not given, `mariadb-admin` executes commands indefinitely until interrupted.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| -S *name*, --socket=*name*                          | For connections to localhost, the Unix socket file to use, or, on Windows, the name of the named pipe to use.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| --ssl                                               | Enables [TLS](https://mariadb.com/docs/server/security/encryption/data-in-transit-encryption). TLS is also enabled even without setting this option when certain other TLS options are set. The `--ssl` option doesn't enable [verifying the server certificate](https://mariadb.com/docs/server/security/encryption/data-in-transit-encryption/secure-connections-overview#server-certificate-verification) by default. In order to verify the server certificate, you must specify the `--ssl-verify-server-cert` option.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| --ssl-ca=*name*                                     | Define a path to a PEM file that should contain one or more X509 certificates for trusted Certificate Authorities (CAs) to use for [TLS](https://mariadb.com/docs/server/security/encryption/data-in-transit-encryption). This option requires the use of an absolute path, not a relative path. See [Secure Connections Overview: Certificate Authorities (CAs)](https://mariadb.com/docs/server/security/encryption/data-in-transit-encryption/secure-connections-overview#certificate-authorities-cas) for more information. This option implies the `--ssl` option.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| --ssl-capath=*name*                                 | Defines a path to a directory that contains one or more PEM files that should each contain one X509 certificate for a trusted Certificate Authority (CA) to use for [TLS](https://mariadb.com/docs/server/security/encryption/data-in-transit-encryption). This option requires the use of an absolute path, not a relative path. The directory specified by this option needs to be run through the [openssl rehash](https://www.openssl.org/docs/man1.1.1/man1/rehash.html) command. See [Secure Connections Overview: Certificate Authorities (CAs)](https://mariadb.com/docs/server/security/encryption/data-in-transit-encryption/secure-connections-overview#certificate-authorities-cas) for more information. This option is only supported if the client was built with OpenSSL or yaSSL. If the client was built with GnuTLS or Schannel, then this option is not supported. See [TLS and Cryptography Libraries Used by MariaDB](https://mariadb.com/docs/server/security/encryption/tls-and-cryptography-libraries-used-by-mariadb) for more information about which libraries are used on which platforms. This option implies the `--ssl` option. |
| --ssl-cert=*name*                                   | Define a path to the X509 certificate file to use for [TLS](https://mariadb.com/docs/server/security/encryption/data-in-transit-encryption). This option requires the use of an absolute path, not a relative path. This option implies the `--ssl` option.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| --ssl-cipher=*name*                                 | List of permitted ciphers or cipher suites to use for [TLS](https://mariadb.com/docs/server/security/encryption/data-in-transit-encryption). This option implies the `--ssl` option.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| --ssl-crl=*name*                                    | Define a path to a PEM file that should contain one or more revoked X509 certificates to use for [TLS](https://mariadb.com/docs/server/security/encryption/data-in-transit-encryption). This option requires that you use the absolute path, not a relative path. See [Secure Connections Overview: Certificate Revocation Lists (CRLs)](https://mariadb.com/docs/server/security/encryption/data-in-transit-encryption/secure-connections-overview#certificate-revocation-lists-crls) for more information. This option is only supported if the client was built with OpenSSL or Schannel. If the client was built with yaSSL or GnuTLS, then this option is not supported. See [TLS and Cryptography Libraries Used by MariaDB](https://mariadb.com/docs/server/security/encryption/tls-and-cryptography-libraries-used-by-mariadb) for more information about which libraries are used on which platforms.                                                                                                                                                                                                                                                  |
| --ssl-crlpath=*name*                                | Define a path to a directory that contains one or more PEM files that should each contain one revoked X509 certificate to use for [TLS](https://mariadb.com/docs/server/security/encryption/data-in-transit-encryption). This option requires that you use the absolute path, not a relative path. The directory specified by this option needs to be run through the [openssl rehash](https://www.openssl.org/docs/man1.1.1/man1/rehash.html) command. See [Secure Connections Overview: Certificate Revocation Lists (CRLs)](https://mariadb.com/docs/server/security/encryption/data-in-transit-encryption/secure-connections-overview#certificate-revocation-lists-crls) for more information. This option is only supported if the client was built with OpenSSL. If the client was built with yaSSL, GnuTLS, or Schannel, then this option is not supported. See [TLS and Cryptography Libraries Used by MariaDB](https://mariadb.com/docs/server/security/encryption/tls-and-cryptography-libraries-used-by-mariadb) for more information about which libraries are used on which platforms.                                                             |
| --ssl-key=*name*                                    | Define a path to a private key file to use for [TLS](https://mariadb.com/docs/server/security/encryption/data-in-transit-encryption). This option requires the use of an absolute path, not a relative path. This option implies the `--ssl` option.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| --ssl-verify-server-cert                            | Enable [server certificate verification](https://mariadb.com/docs/server/security/encryption/data-in-transit-encryption/secure-connections-overview#server-certificate-verification). This option is disabled by default.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |
| --tls-version=*name*                                | Accept a comma-separated list of TLS protocol versions. A TLS protocol version will only be enabled if it is present in this list. All other TLS protocol versions will not be permitted. See [Secure Connections Overview: TLS Protocol Versions](https://mariadb.com/docs/server/security/encryption/data-in-transit-encryption/secure-connections-overview#tls-protocol-versions) for more information.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| -u, --user=*name*                                   | User for login, if not current user.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| -v, --verbose                                       | Write more information.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| -V, --version                                       | Output version information and exit.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| -E, --vertical                                      | Print output vertically. Is similar to '--relative', but prints output vertically.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| -w\[*count*], --wait\[=*count*]                     | If the connection cannot be established, wait and retry instead of aborting. If a count value is given, it indicates the number of times to retry. The default is one time.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| --wait-for-all-slaves                               | Wait for the last binlog event to be sent to all connected replicas before shutting down. This option is off by default.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |

### Option Files

In addition to reading options from the command line, `mariadb-admin` also reads options from [option files](https://mariadb.com/docs/server/server-management/install-and-upgrade-mariadb/configuring-mariadb/configuring-mariadb-with-option-files). If an unknown option is provided to `mariadb-admin` in an option file, the option is ignored.

The following options relate to how MariaDB command line tools handles option files. They must be given as the first argument on the command line:

| Option                    | Description                                                                         |
| ------------------------- | ----------------------------------------------------------------------------------- |
| --print-defaults          | Print the program argument list and exit.                                           |
| --no-defaults             | Don't read default options from any option file.                                    |
| --defaults-file=#         | Only read default options from the given file #.                                    |
| --defaults-extra-file=#   | Read this file after the global files are read.                                     |
| --defaults-group-suffix=# | In addition to the default option groups, also read option groups with this suffix. |

`mariadb-admin` is linked with [MariaDB Connector/C](https://app.gitbook.com/s/CjGYMsT2MVP4nd3IyW2L/mariadb-connector-c). However, MariaDB Connector/C does not yet handle the parsing of option files for this client. That is still performed by the server option file parsing code. See [MDEV-19035](https://jira.mariadb.org/browse/MDEV-19035) for more information.

### Option Groups

`mariadb-admin` reads options from the following [option groups](https://mariadb.com/docs/server/server-management/install-and-upgrade-mariadb/configuring-mariadb/configuring-mariadb-with-option-files#option-groups).

| Group             | Description                                                                                                                                                                                                                       |
| ----------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| \[mysqladmin]     | Options read by `mysqladmin`, which includes both MariaDB Server and MySQL Server.                                                                                                                                                |
| \[mariadb-admin]  | Options read by mariadb-admin.                                                                                                                                                                                                    |
| \[client]         | Options read by all MariaDB and MySQL [client programs](https://mariadb.com/docs/server/clients-and-utilities), which includes both MariaDB and MySQL clients. For example, mysqldump.                                            |
| \[client-server]  | Options read by all MariaDB [client programs](https://mariadb.com/docs/server/clients-and-utilities) and the MariaDB Server. This is useful for options like socket and port, which is common between the server and the clients. |
| \[client-mariadb] | Options read by all MariaDB [client programs](https://mariadb.com/docs/server/clients-and-utilities).                                                                                                                             |

## Variables

Variables can be set with `--variable-name=value`.

| Variables and boolean options | Default value                     |
| ----------------------------- | --------------------------------- |
| count                         | `0`                               |
| debug-check                   | `FALSE`                           |
| debug-info                    | `FALSE`                           |
| force                         | `FALSE`                           |
| compress                      | `FALSE`                           |
| character-sets-dir            | (No default value)                |
| default-character-set         | (No default value)                |
| host                          | (No default value)                |
| no-beep                       | `FALSE`                           |
| port                          | `3306`                            |
| relative                      | `FALSE`                           |
| socket                        | `/var/run/mariadbd/mariadbd.sock` |
| sleep                         | `0`                               |
| ssl                           | `FALSE`                           |
| ssl-ca                        | (No default value)                |
| ssl-capath                    | (No default value)                |
| ssl-cert                      | (No default value)                |
| ssl-cipher                    | (No default value)                |
| ssl-key                       | (No default value)                |
| ssl-verify-server-cert        | `FALSE`                           |
| user                          | (No default value)                |
| verbose                       | `FALSE`                           |
| vertical                      | `FALSE`                           |
| connect\_timeout              | 43200                             |
| shutdown\_timeout             | 3600                              |

## Commands

```
mariadb-admin [options] command [command-arg] [command [command-arg]] ...
```

*Command* is one or more of the following. Commands can be shortened to a unique prefix.

| Command                   | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| ------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| create *db*               | Create a database named *db*.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |
| debug                     | Instruct server to write debug information to log.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| drop *db*                 | Delete a database named *db* and all its tables.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |
| extended-status           | Return all [status variables](https://mariadb.com/docs/server/server-management/variables-and-modes/server-status-variables) and their values.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| flush-all-statistics      | Flush all statistics tables                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| flush-all-status          | Flush status and statistics.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| flush-binary-log          | Flush [binary log](https://mariadb.com/docs/server/server-management/server-monitoring-logs/binary-log).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| flush-client-statistics   | Flush client statistics.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| flush-engine-log          | Flush engine log.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| flush-error-log           | Flush [error log](https://mariadb.com/docs/server/server-management/server-monitoring-logs/error-log).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| flush-general-log         | Flush [general query log](https://mariadb.com/docs/server/server-management/server-monitoring-logs/general-query-log).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| flush-hosts               | Flush all cached hosts.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| flush-index-statistics    | Flush index statistics.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| flush-logs                | Flush all logs.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 |
| flush-privileges          | Reload grant tables (same as reload).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| flush-relay-log           | Flush [relay log](https://mariadb.com/docs/server/server-management/server-monitoring-logs/binary-log/relay-log).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| flush-slow-log            | Flush slow query log.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| flush-ssl                 | Flush SSL certificates. Available from MariaDB 10.6.0.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| flush-status              | Clear [status variables](https://mariadb.com/docs/server/server-management/variables-and-modes/server-status-variables).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |
| flush-table-statistics    | Clear table statistics.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| flush-tables              | Flush all tables.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| flush-threads             | Flush the thread cache.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| flush-user-resources      | Flush user resources.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| flush-user-statistics     | Flush user statistics.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| kill id,id,...            | Kill mysql threads.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| password new-password     | Change old password to new-password. The new password can be passed on the command line as the next argument (for example, mariadb-admin password "new\_password", or can be omitted (as long as no other command follows), in which case the user is prompted for a password. If the password contains special characters, it needs to be enclosed in quotation marks. In Windows, the quotes can only be double quotes, as single quotes are assumed to be part of the password. If the server was started with the [--skip-grant-tables](https://mariadb.com/docs/server/server-management/starting-and-stopping-mariadb/mariadbd-options#-skip-grant-tables) option, changing the password in this way will have no effect. |
| old-password new-password | Change old password to new-password using the old pre-MySQL 4.1 format.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| ping                      | Check if `mariadbd` is alive. Return status is `0` if the server is running (even in the case of an error such as access denied), `1` if it is not.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| processlist               | Show list of active threads in server, equivalent to [SHOW PROCESSLIST](https://mariadb.com/docs/server/reference/sql-statements/administrative-sql-statements/show/show-processlist). With `--verbose`, it is an equivalent to [SHOW FULL PROCESSLIST](https://mariadb.com/docs/server/reference/sql-statements/administrative-sql-statements/show/show-processlist).                                                                                                                                                                                                                                                                                                                                                          |
| reload                    | Reload grant tables.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            |
| refresh                   | Flush all tables and close and open log files.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| shutdown                  | Take the server down by executing the [SHUTDOWN](https://mariadb.com/docs/server/reference/sql-statements/administrative-sql-statements/shutdown) command on the server. If connected to a local server using a Unix socket file, `mariadb-admin` waits until the server's process ID file is removed, to ensure that the server stopped properly. See also the `--wait-for-all-slaves` option.                                                                                                                                                                                                                                                                                                                                 |
| status                    | Give a short status message from the server.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |
| start-all-slaves          | Start all replicas.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| start-slave               | Start replication on a replica server.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |
| stop-all-slaves           | Stop all replicas.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              |
| stop-slave                | Stop replication on a replica server.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           |
| variables                 | Print variables available.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |
| version                   | Return version as well as status info from the server.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          |

### The shutdown Command and the --wait-for-all-slaves Option

The `--wait-for-all-slaves` option can be used in the following scenario.

When a primary server is shut down and goes through the normal shutdown process, it kills client threads in random order. By default, the primary also considers its binary log dump threads to be regular client threads. As a consequence, the binary log dump threads can be killed while client threads still exist. This means that data can be written on the primary during a normal shutdown that won't be replicated. This is true even if [semi-synchronous replication](https://mariadb.com/docs/server/ha-and-performance/standard-replication/semisynchronous-replication) is being used.

This problem can be solved by shutting down the server with the `mariadb-admin` utility and by providing the `--wait-for-all-slaves` option:

```
mariadb-admin --wait-for-all-slaves shutdown
```

When the `--wait-for-all-slaves` option is provided, the server only kills its binary log dump threads after all client threads have been killed, and it only completes the shutdown after the last [binary log](https://mariadb.com/docs/server/server-management/server-monitoring-logs/binary-log) has been sent to all connected replicas.

See [Replication Threads: Binary Log Dump Threads and the Shutdown Process](https://mariadb.com/docs/server/ha-and-performance/standard-replication/replication-threads#binary-log-dump-threads-and-the-shutdown-process) for more information.

## Examples

Quick check of what the server is doing:

```bash
shell> mariadb-admin status
Uptime: 8023 Threads: 1 Questions: 14 Slow queries: 0 Opens: 15 Flush tables: 1 Open tables: 8 Queries per second avg: 0.1
shell> mariadb-admin processlist
+----+-------+-----------+----+---------+------+-------+------------------+
| Id | User | Host | db | Command | Time | State | Info |
+----+-------+-----------+----+---------+------+-------+------------------+
....
+----+-------+-----------+----+---------+------+-------+------------------+
```

More extensive information of what is currently happening, great for troubleshooting a slow server:

```bash
shell> mariadb-admin --relative --sleep=1 extended-status | grep -v " 0 "
```

Check the variables for a running server:

```bash
shell> mariadb-admin variables | grep datadir
| datadir | /my/data/ |
```

Use a shortened prefix for the `version` command:

```bash
shell> mariadb-admin ver
mariadb-admin from 11.1.0-preview-MariaDB, client 9.1 for linux-systemd (x86_64)
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Server version		11.1.0-preview-MariaDB
Protocol version	10
Connection		localhost via TCP/IP
TCP port		11100
Uptime:			3 min 21 sec

Threads: 1  Questions: 1  Slow queries: 0  Opens: 17  Open tables: 10  Queries per second avg: 0.004
```

#### Other Ways To Stop mariadbd (Unix)

If connecting as a user that does not have the `SUPER` or `SHUTDOWN` privilege, an error occurs:

```
mariadb-admin: shutdown failed; error: 'Access denied; you need (at least one of) the SHUTDOWN privilege(s) for this operation'
```

If you don't know the user password, you can still take the `mariadbd` process down like this:

{% tabs %}
{% tab title="Unix-like systems" %}

```bash
kill -SIGTERM pid-of-mariadbd-process
```

This command is identical to `mariadb-admin shutdown`.
{% endtab %}

{% tab title="Windows" %}

```bash
NET STOP MySQL
```

{% endtab %}
{% endtabs %}

You can use the [SHUTDOWN](https://mariadb.com/docs/server/reference/sql-statements/administrative-sql-statements/shutdown) command from any client.

## See Also

* [SHUTDOWN](https://mariadb.com/docs/server/reference/sql-statements/administrative-sql-statements/shutdown)
* [mytop](https://www.mysqlfanboy.com/mytop-3/), a tool similar to `top` on Unix-like systems, that allows to see what the server is doing.

<sub>*This page is licensed: CC BY-SA / Gnu FDL*</sub>

{% @marketo/form formId="4316" %}
