<a id="connect-to-cluster"></a>

# Connect to Your Cluster

Once your ScyllaDB Cloud cluster is running, you can connect your application
to it using the CQL protocol. This page explains how to find your connection
details and points you to drivers and tutorials for common languages.

## Get Your Connection Details

1. Go to [cloud.scylladb.com](https://cloud.scylladb.com) and open your
   cluster’s view.
2. Click the **Connect** tab.
3. Choose your preferred client — CQL Shell (cqlsh) or one of the ScyllaDB
   drivers. The tab displays the connection string, host address, port, and
   credentials specific to your cluster.

ScyllaDB Cloud uses default credentials for new clusters. You can manage users
and roles in the [Security](https://cloud.docs.scylladb.com/stable/security/index.md) section.

#### NOTE
If you set up VPC Peering or AWS Transit Gateway during cluster creation,
make sure network connectivity is fully configured before attempting to
connect your application. See
[Configure Network Access](https://cloud.docs.scylladb.com/stable/cluster-connections/index.md) for setup
guides.

## Use a ScyllaDB Driver

ScyllaDB provides Cassandra-compatible drivers for all major programming
languages. The drivers are aware of the cluster topology and automatically
route requests to the correct shard, which is important for performance.

See [ScyllaDB CQL Drivers](https://docs.scylladb.com/stable/drivers/cql-drivers.html)
for the full list of supported drivers and links to their documentation.

## Hands-On Tutorial

The [Getting Started with ScyllaDB Cloud](https://cloud-getting-started.scylladb.com/)
tutorial walks you through building a real application connected to ScyllaDB
Cloud. It covers creating a keyspace and table, writing and reading data, and
best practices for production use. Examples are available in Go, Java, Python,
Rust, and more.
