--connect-timeout (-t)

Overview

Number of seconds to wait for the server response during the initial handshake before the connection times out.

See also: mariadb-shell for MariaDB Shell, in 23.02, in 23.01, in 22.12, and in 22.10

USAGE

mariadb-shell [{--connect-timeout | -t} <seconds>]

DETAILS

Option

Default Behavior

Argument

--connect-timeout
-t

If omitted, the connection timeout is 43200 seconds (12 hours)

Number of seconds

SYNONYMS

SCHEMA

PARAMETERS

SKYSQL

PRIVILEGES

EXAMPLES

To set the connection timeout to 10 seconds:

$ mariadb-shell \
   --host 192.0.2.1 \
   --user user_name \
   --password 'user_password' \
   --connect-timeout 10

To use the short option names, the equivalent command is:

$ mariadb-shell \
   -h 192.0.2.1 \
   -u user_name \
   -p 'user_password' \
   -t 10

ERROR HANDLING

FEATURE INTERACTION

RESPONSES

DIAGNOSIS

ISO 9075:2016

CHANGE HISTORY

Release Series

History

23.03

  • Present starting in MariaDB Shell 23.03.1.

23.02

  • Present starting in MariaDB Shell 23.02.1.

23.01

  • Present starting in MariaDB Shell 23.01.1.

22.12

  • Present starting in MariaDB Shell 22.12.1.

22.10

  • Present starting in MariaDB Shell 22.10.3.

EXTERNAL REFERENCES