Connect via client shells
Connect to your YugabyteDB cluster database from your desktop using the YugabyteDB ysqlsh and ycqlsh client shells installed on your computer. Because YugabyteDB is compatible with PostgreSQL and Cassandra, you can also use psql and third-party tools to connect.
When connecting via a Yugabyte client shell, ensure you are running the latest versions of the shells (Yugabyte Client 2.6 or later). See How do I connect to my cluster? in the FAQ for details.
Prerequisites
Before you can connect a desktop client to a YugabyteDB Managed cluster, you need to do the following:
- Configure network access
- Download the cluster certificate
Network access
Before you can connect using a shell or other client, you need to add your computer to the cluster IP allow list.
By default, clusters deployed in a VPC do not expose any publicly-accessible IP addresses. To add public IP addresses, enable Public Access on the cluster Settings tab. Alternatively, use the Cloud shell instead.
For more information, refer to IP allow list.
Cluster certificate
YugabyteDB Managed clusters have TLS/SSL (encryption in-transit) enabled. You need to download the cluster certificate to your computer.
For information on SSL in YugabyteDB Managed, refer to Encryption in transit.
Connect using a client shell
Use the ysqlsh and ycqlsh shells to connect to and interact with YuagbyteDB using the YSQL and YCQL APIs respectively. You can download and install the YugabyteDB client shells and connect to your database using the following steps for either YSQL or YCQL.
To connect to a cluster using ysqlsh
:
-
On the Clusters tab, select a cluster.
-
Click Connect.
-
Click YugabyteDB Client Shell.
-
Make sure you are running the latest version of the Yugabyte Client shell. If you have not installed Yugabyte Client on your computer, select your operating system and copy the command to install Yugabyte Client from the command line.
-
Click Download CA Cert to download the root.crt certificate for TLS encryption, and install the certificate on your computer. If you are using Docker, copy the certificate to your Docker container.
-
If your cluster is deployed in a VPC, choose Private Address if you are connecting from a peered VPC. Otherwise, choose Public Address (only available if you have enabled Public Access for the cluster; not recommended for production).
-
Copy the YSQL connection string.
The connection string includes flags specifying the host (
host
), username (user
), database (dbname
), and TLS settings (sslmode
andsslrootcert
). The command specifies that the connection will use the CA certificate you installed on your computer. For information on using other SSL modes, refer to SSL modes in YSQL.Here's an example of the generated
ysqlsh
command:./ysqlsh "host=740ce33e-4242-4242-a424-cc4242c4242b.aws.ybdb.io \ user=<DB USER> \ dbname=yugabyte \ sslmode=verify-full \ sslrootcert=<ROOT_CERT_PATH>"
-
On your computer, change directories to the directory where you installed the client shell.
-
Paste and run the command, replacing
<DB USER>
with your database username.yugabyte
with the database name, if you're connecting to a database other than the default (yugabyte).<ROOT_CERT_PATH>
with the path to the root certificate on your computer.
-
Enter your password when prompted.
The ysqlsh
shell opens connected to the remote cluster.
ysqlsh (11.2-YB-2.6.1.0-b0)
SSL connection (protocol: TLSv1.2, cipher: ECDHE-RSA-AES256-GCM-SHA384, bits: 256, compression: off)
Type "help" for help.
yugabyte=>
To connect to a cluster using ycqlsh
:
-
On the Clusters tab, select a cluster.
-
Click Connect.
-
Click YugabyteDB Client Shell.
-
Make sure you are running the latest version of the Yugabyte Client shell. If you have not installed Yugabyte Client on your computer, select your operating system and copy the command to install Yugabyte Client from the command line.
-
Click Download CA Cert to download the root.crt certificate for TLS encryption, and install the certificate on your computer. If you are using Docker, copy the certificate to your Docker container.
-
If your cluster is deployed in a VPC, choose Private Address if you are connecting from a peered VPC. Otherwise, choose Public Address (only available if you have enabled Public Access for the cluster; not recommended for production).
-
Copy the YCQL connection string.
The connection string includes the cluster host and port, with flags for the database username (
-u
), and TLS settings (--ssl
). The command specifies that the connection will use the CA certificate you installed on your computer.Here's an example of the generated
ycqlsh
command:SSL_CERTFILE=<ROOT_CERT_PATH> \ ./ycqlsh \ 740ce33e-4242-4242-a424-cc4242c4242b.aws.ybdb.io 9042 \ -u <DB USER> \ --ssl
-
On your computer, change directories to the directory where you installed the client shell.
-
Paste and run the command, replacing
<ROOT_CERT_PATH>
with the path to the root certificate on your computer.<DB USER>
with your database username.
The ycqlsh
shell opens connected to the remote cluster.
Connected to local cluster at 35.236.85.97:12200.
[ycqlsh 5.0.1 | Cassandra 3.9-SNAPSHOT | CQL spec 3.4.2 | Native protocol v4]
Use HELP for help.
admin@ycqlsh>
Connect using psql
To connect using psql, first download the CA certificate for your cluster by clicking Connect, selecting YugabyteDB Client Shell, and clicking Download CA Cert. Then use the following connection string:
psql --host=<HOST_ADDRESS> --port=5433 \
--username=<DB USER> \
--dbname=yugabyte \
--set=sslmode=verify-full \
--set=sslrootcert=<ROOT_CERT_PATH>
Replace the following:
<HOST_ADDRESS>
with the value for host as shown on the Settings tab for your cluster.<DB USER>
with your database username.yugabyte
with the database name, if you're connecting to a database other than the default (yugabyte).<ROOT_CERT_PATH>
with the path to the root certificate on your computer.
For information on using other SSL modes, refer to SSL modes in YSQL.
Connect using third party clients
Because YugabyteDB is compatible with PostgreSQL and Cassandra, you can use third-party clients to connect to your YugabyteDB clusters in YugabyteDB Managed.
To connect, follow the client's configuration steps for PostgreSQL or Cassandra, and use the following values:
- host as shown on the Settings tab for your cluster
- port 5433 for YSQL, 9042 for YCQL
- database name; the default YSQL database is yugabyte
- username and password of a user with permissions for the database; the default user is admin
Your client may also require the use of the cluster's certificate. Refer to Download the cluster certificate.
For detailed steps for configuring popular third party tools, see Third party tools.
Related information
- ysqlsh — Overview of the command line interface (CLI), syntax, and commands.
- YSQL API — Reference for supported YSQL statements, data types, functions, and operators.
- ycqlsh — Overview of the command line interface (CLI), syntax, and commands.
- YCQL API — Reference for supported YCQL statements, data types, functions, and operators.