This topic describes how to connect to a MySQL tenant of OceanBase Database by using OceanBase Client (OBClient).
Prerequisites
OBClient is downloaded and installed. If OBClient is not downloaded, download the required version from OceanBase Download Center.
The client is in the allowlist of the tenant. For more information about how to query and configure a tenant allowlist, see View and set a tenant allowlist.
Procedure
Connect to OceanBase Database by using ODP
Run the following command to connect to OceanBase Database from OBClient by using OceanBase Database Proxy (ODP):
obclient -h$host -P$port -u$user_name -p****** [-c] [-A] [$database_name]
Note
Compression is supported between OceanBase Database V4.2.1 BP3, V4.2.2 BP1, or later and ODP V4.2.3 or later. For more information, see the following topics:
- For more information about the parameter that specifies whether to enable the OceanBase 2.0 transmission protocol between ODP and OceanBase Database, see [enable_ob_protocol_v2](https://en.oceanbase.com/docs/common-odp-doc-en-10000000001177495).
- For more information about the parameter that specifies whether to enable the compression protocol, see [enable_compression_protocol](https://en.oceanbase.com/docs/common-odp-doc-en-10000000001177632).
- For more information about the parameter that specifies the compression algorithm and the compression level in the OceanBase 2.0 protocol, see [compression_algorithm](https://en.oceanbase.com/docs/common-odp-doc-en-10000000001735293).
where
-hspecifies the IP address for connecting to OceanBase Database. Replace$hostwith the actual IP address of ODP used for connection.-Pspecifies the port for connecting to OceanBase Database. Replace$portwith the port customized when ODP is deployed. The default value is2883.-uspecifies the tenant account for connecting to OceanBase Database. The following account formats are supported:username@tenant name#cluster name,cluster name:tenant name:username,cluster name-tenant name-username, andcluster name.tenant name.username. The default username of the administrator of a MySQL tenant isroot.Note
- When you use ODP to connect to an OceanBase cluster, you can obtain the cluster name in the following way:
Directly connect to OceanBase Database and execute theSHOW PARAMETERS LIKE 'cluster';statement to query the cluster name. In the query result,VALUEindicates the name of the OceanBase cluster. - If ODP works for multiple clusters, you must specify the cluster name when connecting to it. If ODP works for only one cluster, you do not need to specify the cluster name when connecting to it.
- When you use ODP to connect to an OceanBase cluster, you can obtain the cluster name in the following way:
-pspecifies the account password for connecting to OceanBase Database. Replace******with the actual password.Note
For security purposes, we recommend that you do not directly enter the password on the CLI, especially in an environment where the script or historical records are visible. You can skip this option and enter the password when being prompted to.
-cspecifies not to ignore comments in the runtime environment of OBClient. This parameter is optional.Note
Hints are special comments that are not affected by the
-coption.-Aspecifies not to automatically retrieve the statistical information when you use OBClient to connect to OceanBase Database. This parameter is optional.$database_namespecifies the default database to be used after the connection to OceanBase Database is established. This parameter is optional. By default, no database is accessed after the connection is established if you do not specify this option. You need to manually select a database.
Here is an example:
obclient -h10.10.10.1 -P2883 -uuser001@obtenant#obdemo -p****** -c -A oceanbase
Specify SERVICE_NAME of ODP to connect to OceanBase Database
You can specify IP:PORT and SERVICE_NAME of ODP to connect to OceanBase Database. ODP converts the connection string into the format of -uuser_name@name of the primary tenant#name of the cluster where the primary tenant resides based on the specified SERVICE_NAME. You do not need to manually modify the connection string after a primary/standby switchover. For more information about the SERVICE_NAME parameter, see Create a service.
Notice
This feature applies to OceanBase Cloud Platform (OCP) V4.3.1 and later. It takes effect only after OCP has taken over OceanBase clusters.
Run the following command to connect to OceanBase Database by using ODP based on SERVICE_NAME:
obclient -h$host -P$port -u$user_name@SERVICE:$service_name -p******
where
$hostspecifies the IP address of ODP.$portspecifies the port number of ODP.$user_namespecifies the username.$service_namespecifies the service name.-pspecifies the account password for connecting to OceanBase Database. Replace******with the actual password.
Here is an example:
obclient -h10.10.10.1 -P2883 -uuser001@SERVICE:service_mysql001 -p******
Directly connect to OceanBase Database
Run the following command to directly connect to OceanBase Database from OBClient:
obclient -h$host -P$port -u$user_name -p****** [-c] [-A] [$database_name]
where:
-hspecifies the IP address for connecting to OceanBase Database. Replace$hostwith the actual IP address of the OBServer node for direct connection.Notice
When you use the direct connection method, make sure that the tenant resources are distributed on the OBServer node you specified. Otherwise, you cannot connect to the tenant by using this OBServer node.
-Pspecifies the port for connecting to OceanBase Database. Replace$portwith the port customized when OceanBase Database is deployed. The default value is2881.-uspecifies the tenant account for connecting to OceanBase Database, which is in theusername@tenant nameformat. The default username of the administrator of a MySQL tenant isroot.Notice
When you directly connect to OceanBase Database, enter the username and tenant name in the format of
username@tenant namefor the connection parameter-uand do not specify the cluster name. If you specify the cluster name in-u, a connection error is returned.-pspecifies the account password for connecting to OceanBase Database. Replace******with the actual password.Note
For security purposes, we recommend that you do not directly enter the password on the CLI, especially in an environment where the script or historical records are visible. You can skip this option and enter the password when being prompted to.
-cspecifies not to ignore comments in the runtime environment of OBClient. This parameter is optional.Note
Hints are special comments that are not affected by the
-coption.-Aspecifies not to automatically retrieve the statistical information when you use OBClient to connect to OceanBase Database. This parameter is optional.$database_namespecifies the default database to be used after the connection to OceanBase Database is established. This parameter is optional. By default, no database is accessed after the connection is established if you do not specify this option. You need to manually select a database.
Here is an example:
obclient -h10.10.10.1 -P2881 -uuser001@obtenant -p****** -c -A oceanbase
Connection example
Open a command-line terminal.
Run the following command to connect to a MySQL tenant of OceanBase Database from OBClient by using ODP:
obclient -hxxx.xx.xxx.xxx -P2883 -uroot@mysql001#test424 -p****** -A oceanbaseThe return result is as follows:
Welcome to the OceanBase. Commands end with ; or \g. Your OceanBase connection id is 16 Server version: OceanBase 4.2.4.0 (r200000342024061210-c4c0c18741e45a1d40889b6147c3132574d6e7ea) (Built Jun 12 2024 10:58:58) Copyright (c) 2000, 2018, OceanBase and/or its affiliates. All rights reserved. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. obclient [oceanbase]>To exit OBClient, enter
exitand press Enter, or press the keyboard shortcut Ctrl + D.
References
For information about how to connect to an Oracle tenant of OceanBase Database by using OBClient, see Connect to an OceanBase tenant by using OBClient.