TablePlus is a modern native database management tool that provides a convenient and user-friendly GUI for managing various relational databases, such as MySQL, PostgreSQL, and SQLite. This topic takes a MySQL tenant of OceanBase Database and the macOS operating system as an example to describe how to connect to OceanBase Database in TablePlus.
Prerequisites
You have downloaded and installed TablePlus. For more information, see the TablePlus official website.
The IP address of the OBServer node to be connected has access to the server where TablePlus is installed.
You have installed OceanBase Database and created a MySQL tenant.
Procedure
Step 1: Obtain the OceanBase Database connection string
Contact the deployment personnel or administrator of OceanBase Database to obtain the connection string. The following is a connection string example:
obclient -h$host -P$port -u$user_name -p$password -D$database_name
The parameters are described as follows:
$host: the IP address for connecting to OceanBase Database. It is the IP address of OceanBase Database Proxy (ODP) for connection through ODP, or the IP address of an OBServer node for direct connection.$port: the port for connecting to OceanBase Database. For connection through ODP, the default value is2883, which can be customized when ODP is deployed. For direct connection, the default value is2881, which can be customized when OceanBase Database is deployed.$database_name: the name of the database to be accessed.Notice
The user for connecting to a tenant must have the
CREATE,INSERT,DROP, andSELECTprivileges on the database. For more information about user privileges, see Privilege types in MySQL mode.$user_name: the tenant account. For connection through ODP, two account formats are supported:username@tenant name#cluster nameandcluster name:tenant name:username. For direct connection, theusername@tenant nameformat is supported.$password: the password of the account.
For more information about the connection string, see Connect to an OceanBase Database tenant by using OBClient.
Here is an example:
obclient -hxxx.xxx.xxx.xxx -P2881 -utest_user001@mysql001 -p****** -Dtest
Step 2: Create an OceanBase data source in TablePlus
Start TablePlus, right-click on the right side, and choose New > Connection.
In the dialog box that appears, select MySQL and then click Create.
In the MySQL Connection dialog box, specify the following parameters based on the connection string obtained in Step 1.
Parameter Description Name The name of the custom connection. Host/IP The IP address for connecting to OceanBase Database. The value is sourced from the -hparameter in the connection string.Port The port for connecting to OceanBase Database. The value is sourced from the -Pparameter in the connection string.User The username of the account for connecting to OceanBase Database, for example, test. The value is sourced from the-uparameter in the connection string.Password The password of the account. The value is sourced from the -pparameter in the connection string.Database The name of the database to be accessed. The value is sourced from the -Dparameter in the connection string.Click Test. If the background colors of the input boxes turn green, the connection is successful.
Click Connect.
What to do next
TablePlus will be ready for use after the connection is created. For more information about how to use TablePlus, see TablePlus documentation.