This topic describes how to connect to a MySQL tenant of OceanBase Database by using 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]
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.$user_namecan be in any of the following formats: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 connecting to an OceanBase cluster by using ODP, you can obtain the cluster name in the following way:
First, connect directly to OceanBase Database. Then, use theSHOW PARAMETERS LIKE 'cluster';command to retrieve the name of the cluster. This command returns the name of the OceanBase cluster corresponding to the value ofVALUE. - 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 connecting to an OceanBase cluster by using ODP, 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.
-cis optional, which specifies that comments are not ignored in the runtime environment of OBClient.Note
Hints are special comments that are not affected by the
-coption.-Ais optional, which specifies not to automatically retrieve the statistical information when OBClient connects to OceanBase Database.$database_nameis optional, which specifies the default database to be used after the connection to OceanBase Database is established. 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
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. The format of$user_nameisusername@tenant name. 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 including 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.
-cis optional, which specifies that comments are not ignored in the runtime environment of OBClient.Note
Hints are special comments that are not affected by the
-coption.-Ais optional, which specifies not to automatically retrieve the statistical information when OBClient connects to OceanBase Database.$database_nameis optional, which specifies the default database to be used after the connection to OceanBase Database is established. 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 by using OBClient:
obclient -hxxx.xx.xxx.xxx -P2883 -uroot@mysql001#test432 -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.3.2.0 (r200000272024061717-93c0ed73ebbcac6edbf7b585860b75d825935358) (Built Jun 17 2024 18:06:04) 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.