Connect to TiDB with DBeaver
TiDB is a MySQL-compatible database, and DBeaver Community is a free cross-platform database tool for developers, database administrators, analysts, and everyone working with data.
In this tutorial, you can learn how to connect to your TiDB cluster using DBeaver Community.
Prerequisites
To complete this tutorial, you need:
- DBeaver Community 23.0.3 or higher.
- A TiDB cluster.
If you don't have a TiDB cluster, you can create one as follows:
- (Recommended) Follow Creating a TiDB Serverless cluster to create your own TiDB Cloud cluster.
- Follow Deploy a local test TiDB cluster or Deploy a production TiDB cluster to create a local cluster.
Connect to TiDB
Connect to your TiDB cluster depending on the TiDB deployment option you've selected.
- TiDB Serverless
- TiDB Dedicated
- TiDB Self-Hosted
Navigate to the Clusters page, and then click the name of your target cluster to go to its overview page.
Click Connect in the upper-right corner. A connection dialog is displayed.
Ensure the configurations in the connection dialog match your operating environment.
- Endpoint Type is set to
Public
- Connect With is set to
JDBC
- Operating System matches your environment.
- Endpoint Type is set to
Click Create password to create a random password.
Launch DBeaver and click New Database Connection in the upper-left corner. In the Connect to a database dialog, select TiDB from the list, and then click Next.
Copy the JDBC string from the TiDB Cloud connection dialog. In DBeaver, select URL for Connect by and paste the JDBC string into the URL field. You don't need to replace the
<your_password>
placeholder in the string with your actual password, because DBeaver reads username and password from the Authentication (Database Native) section.In the Authentication (Database Native) section, enter your Username and Password. An example is as follows:
Click Test Connection to validate the connection to the TiDB Serverless cluster.
If the Download driver files dialog is displayed, click Download to get the driver files.
If the connection test is successful, the Connection test dialog is displayed as follows. Click OK to close it.
Click Finish to save the connection configuration.
Navigate to the Clusters page, and then click the name of your target cluster to go to its overview page.
Click Connect in the upper-right corner. A connection dialog is displayed.
Click Allow Access from Anywhere, and then click Download CA cert to download the CA certificate.
For more details about how to obtain the connection string, refer to TiDB Dedicated standard connection.
Launch DBeaver and click New Database Connection in the upper-left corner. In the Connect to a database dialog, select TiDB from the list, and then click Next.
Copy and paste the appropriate connection string into the DBeaver connection panel. The mappings between DBeaver fields and TiDB Dedicated connection string are as follows:
DBeaver field TiDB Dedicated connection string Server Host {host}
Port {port}
Username {user}
Password {password}
An example is as follows:
Click Test Connection to validate the connection to the TiDB Dedicated cluster.
If the Download driver files dialog is displayed, click Download to get the driver files.
If the connection test is successful, the Connection test dialog is displayed as follows. Click OK to close it.
Click Finish to save the connection configuration.
Launch DBeaver and click New Database Connection in the upper-left corner. In the Connect to a database dialog, select TiDB from the list, and then click Next.
Configure the following connection parameters:
- Server Host: The IP address or domain name of your TiDB Self-Hosted cluster.
- Port: The port number of your TiDB Self-Hosted cluster.
- Username: The username to use to connect to your TiDB Self-Hosted cluster.
- Password: The password of the username.
An example is as follows:
Click Test Connection to validate the connection to the TiDB Self-Hosted cluster.
If the Download driver files dialog is displayed, click Download to get the driver files.
If the connection test is successful, the Connection test dialog is displayed as follows. Click OK to close it.
Click Finish to save the connection configuration.
Next steps
- Learn more usage of DBeaver from the documentation of DBeaver.
- Learn the best practices for TiDB application development with the chapters in the Developer guide, such as Insert data, Update data, Delete data, Single table reading, Transactions, and SQL performance optimization.
- Learn through the professional TiDB developer courses and earn TiDB certifications after passing the exam.
Need help?
Ask questions on TiDB Community, or create a support ticket.