-
Notifications
You must be signed in to change notification settings - Fork 704
tidbcloud/premium: add create private endpoint #21923
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: release-8.5
Are you sure you want to change the base?
Changes from all commits
835eeca
d63b2f7
73792a8
9dd84f1
469d29a
66a6b99
b131188
37e2604
1edcb9a
aeb79b0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,200 @@ | ||||||
--- | ||||||
title: Connect to a TiDB Cloud Premium instance via AWS PrivateLink | ||||||
summary: Learn how to connect to your TiDB Cloud Premium instance via private endpoint with AWS. | ||||||
--- | ||||||
|
||||||
# Connect to a TiDB Cloud Premium instance via AWS PrivateLink | ||||||
|
||||||
This document describes how to connect to your TiDB Cloud Premium instance via [AWS PrivateLink](https://aws.amazon.com/privatelink). | ||||||
|
||||||
> **Tip:** | ||||||
> | ||||||
> - To learn how to connect to a {{{ .starter }}} cluster via AWS PrivateLink, see [Connect to {{{ .starter }}} via AWS PrivateLink](/tidb-cloud/set-up-private-endpoint-connections-serverless.md). | ||||||
> - To learn how to connect to a TiDB Cloud Premium instance via private endpoint with Alibaba Cloud, see [Connect to a TiDB Cloud Premium instance via Alibaba Cloud Private Link](/tidb-cloud/connect-via-private-connection-premium-on-alicloud.md). | ||||||
|
||||||
TiDB Cloud supports highly secure and one-way access to the TiDB Cloud service hosted in an AWS VPC via [AWS PrivateLink](https://aws.amazon.com/privatelink), as if the service were in your own VPC. A private endpoint is exposed in your VPC and you can create a connection to the TiDB Cloud service via the endpoint with permission. | ||||||
|
||||||
Powered by AWS PrivateLink, the endpoint connection is secure and private, and does not expose your data to the public internet. In addition, the endpoint connection supports CIDR overlap and is easier for network management. | ||||||
|
||||||
The architecture of the private endpoint is as follows: | ||||||
|
||||||
 | ||||||
|
||||||
For more detailed definitions of the private endpoint and endpoint service, see the following AWS documents: | ||||||
|
||||||
- [What is AWS PrivateLink?](https://docs.aws.amazon.com/vpc/latest/privatelink/what-is-privatelink.html) | ||||||
- [AWS PrivateLink concepts](https://docs.aws.amazon.com/vpc/latest/privatelink/concepts.html) | ||||||
|
||||||
## Restrictions | ||||||
|
||||||
- Only the `Organization Owner` roles can create private endpoint connections. | ||||||
- The private endpoint and the TiDB instance to be connected must be located in the same region. | ||||||
## Prerequisites | ||||||
|
||||||
Make sure that DNS hostnames and DNS resolution are both enabled in your AWS VPC settings. They are disabled by default when you create a VPC in the [AWS Management Console](https://console.aws.amazon.com/). | ||||||
|
||||||
## Set up a private endpoint connection and connect to your instance | ||||||
|
||||||
To connect to your TiDB Cloud Premium instance via a private endpoint, follow these steps: | ||||||
|
||||||
1. [Select a TiDB instance](#step-1-select-a-tidb-instance) | ||||||
2. [Create an AWS interface endpoint](#step-2-create-an-aws-interface-endpoint) | ||||||
3. [Create a private endpoint connection](#step-3-create-a-private-endpoint-connection) | ||||||
4. [Enable private DNS](#step-4-enable-private-dns) | ||||||
5. [Connect to your TiDB instance](#step-5-connect-to-your-tidb-instance) | ||||||
|
||||||
If you have multiple instances, you need to repeat these steps for each instance that you want to connect to using AWS PrivateLink. | ||||||
|
||||||
### Step 1. Select a TiDB instance | ||||||
|
||||||
1. On the [**Instances**](https://tidbcloud.com/tidbs?orgId=1372813089208281461&uiMode=new-offerings-preview) page of your TiDB Cloud web console, click the name of your target TiDB instance to go to its overview page. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The URL for the Instances page contains a hardcoded organization ID and other query parameters, which is not suitable for public documentation. Please use a generic URL.
Suggested change
|
||||||
2. Click **Connect** in the upper-right corner. A connection dialog is displayed. | ||||||
3. In the **Connection Type** drop-down list, select **Private Endpoint**, and then click **Create Private Endpoint Connection**. | ||||||
|
||||||
> **Note:** | ||||||
> | ||||||
> If you have already created a private endpoint connection, the active endpoint will appear in the connection dialog. To create additional private endpoint connections, navigate to the **Networking** page by clicking **Settings** > **Networking** in the left navigation pane. | ||||||
|
||||||
### Step 2. Create an AWS interface endpoint | ||||||
|
||||||
> **Note:** | ||||||
> | ||||||
> For each TiDB Cloud Premium instance, the corresponding endpoint service is automatically created 3 to 4 minutes after the instance creation. | ||||||
|
||||||
If you see the `TiDB Private Link Service is ready` message, the corresponding endpoint service is ready. You can provide the following information to create the endpoint. | ||||||
|
||||||
1. Fill in the **Your VPC ID** and **Your Subnet IDs** fields. You can find these IDs from your [AWS Management Console](https://console.aws.amazon.com/). For multiple subnets, enter the IDs separated by spaces. | ||||||
2. Click **Generate Command** to get the following endpoint creation command. | ||||||
|
||||||
```bash | ||||||
aws ec2 create-vpc-endpoint --vpc-id ${your_vpc_id} --region ${your_region} --service-name ${your_endpoint_service_name} --vpc-endpoint-type Interface --subnet-ids ${your_application_subnet_ids} | ||||||
``` | ||||||
|
||||||
Then, you can create an AWS interface endpoint either using the AWS CLI or using the [AWS Management Console](https://aws.amazon.com/console/). | ||||||
|
||||||
<SimpleTab> | ||||||
<div label="Use AWS CLI"> | ||||||
|
||||||
To use the AWS CLI to create a VPC interface endpoint, perform the following steps: | ||||||
|
||||||
1. Copy the generated command and run it in your terminal. | ||||||
2. Record the VPC endpoint ID you just created. | ||||||
|
||||||
> **Tip:** | ||||||
> | ||||||
> - Before running the command, you need to have AWS CLI installed and configured. See [AWS CLI configuration basics](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-quickstart.html) for details. | ||||||
> | ||||||
> - If your service is spanning across more than three availability zones (AZs), you will get an error message indicating that the VPC endpoint service does not support the AZ of the subnet. This issue occurs when there is an extra AZ in your selected region in addition to the AZs where your TiDB instance is located. In this case, you can contact [PingCAP Technical Support](https://docs.pingcap.com/tidbcloud/tidb-cloud-support). | ||||||
|
||||||
</div> | ||||||
<div label="Use AWS Console"> | ||||||
|
||||||
To use the AWS Management Console to create a VPC interface endpoint, perform the following steps: | ||||||
|
||||||
1. Sign in to the [AWS Management Console](https://aws.amazon.com/console/) and open the Amazon VPC console at [https://console.aws.amazon.com/vpc/](https://console.aws.amazon.com/vpc/). | ||||||
2. Click **Endpoints** in the navigation pane, and then click **Create Endpoint** in the upper-right corner. | ||||||
|
||||||
The **Create endpoint** page is displayed. | ||||||
|
||||||
 | ||||||
|
||||||
3. In the **Endpoint settings** area, fill in a name tag if needed, and then select the **Endpoint services that use NLBs and GWLBs** option. | ||||||
4. In the **Service settings** area, enter the service name `${your_endpoint_service_name}` from the generated command (`--service-name ${your_endpoint_service_name}`). | ||||||
5. Click **Verify service**. | ||||||
6. In the **Network settings** area, select your VPC in the drop-down list. | ||||||
7. In the **Subnets** area, select the availability zones where your TiDB instance is located. | ||||||
|
||||||
> **Tip:** | ||||||
> | ||||||
> If your service is spanning across more than three availability zones (AZs), you might not be able to select AZs in the **Subnets** area. This issue occurs when there is an extra AZ in your selected region in addition to the AZs where your TiDB instance is located. In this case, contact [PingCAP Technical Support](https://docs.pingcap.com/tidbcloud/tidb-cloud-support). | ||||||
|
||||||
8. In the **Security groups** area, select your security group properly. | ||||||
|
||||||
> **Note:** | ||||||
> | ||||||
> Make sure the selected security group allows inbound access from your EC2 instances on Port 4000 or a customer-defined port. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Per the style guide, port numbers should be enclosed in backticks for proper formatting.
Suggested change
|
||||||
|
||||||
9. Click **Create endpoint**. | ||||||
|
||||||
</div> | ||||||
</SimpleTab> | ||||||
|
||||||
### Step 3. Create a private endpoint connection | ||||||
|
||||||
1. Go back to the TiDB Cloud console. | ||||||
2. On the **Create AWS Private Endpoint Connection** page, enter your VPC endpoint ID. | ||||||
3. Click **Create Private Endpoint Connection**. | ||||||
|
||||||
> **Tip:** | ||||||
> | ||||||
> You can view and manage private endpoint connections on your target TiDB instance, and then click **Settings** > **Networking** in the left navigation pane. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This sentence can be rephrased for better clarity.
Suggested change
|
||||||
|
||||||
### Step 4. Enable private DNS | ||||||
|
||||||
Enable private DNS in AWS. You can either use the AWS CLI or the AWS Management Console. | ||||||
|
||||||
<SimpleTab> | ||||||
<div label="Use AWS CLI"> | ||||||
|
||||||
To enable private DNS using your AWS CLI, copy the following `aws ec2 modify-vpc-endpoint` command from the **Create Private Endpoint Connection** page and run it in your AWS CLI. | ||||||
|
||||||
```bash | ||||||
aws ec2 modify-vpc-endpoint --vpc-endpoint-id ${your_vpc_endpoint_id} --private-dns-enabled | ||||||
``` | ||||||
|
||||||
Alternatively, you can find the command on the **Networking** page of your instance. Locate the private endpoint and click **...*** > **Enable DNS** in the **Action** column. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There appears to be a typo here.
Suggested change
|
||||||
|
||||||
</div> | ||||||
<div label="Use AWS Console"> | ||||||
|
||||||
To enable private DNS in your AWS Management Console: | ||||||
|
||||||
1. Go to **VPC** > **Endpoints**. | ||||||
2. Right-click your endpoint ID and select **Modify private DNS name**. | ||||||
3. Select the **Enable for this endpoint** check box. | ||||||
4. Click **Save changes**. | ||||||
|
||||||
 | ||||||
|
||||||
</div> | ||||||
</SimpleTab> | ||||||
|
||||||
### Step 5. Connect to your TiDB instance | ||||||
|
||||||
After you have accepted the private endpoint connection, you are redirected back to the connection dialog. | ||||||
|
||||||
1. Wait for the private endpoint connection status to change from **System Checking** to **Active** (approximately 5 minutes). | ||||||
2. In the **Connect With** drop-down list, select your preferred connection method. The corresponding connection string is displayed at the bottom of the dialog. | ||||||
3. Connect to your instance with the connection string. | ||||||
|
||||||
> **Tip:** | ||||||
> | ||||||
> If you cannot connect to the instance, the reason might be that the security group of your VPC endpoint in AWS is not properly set. See [this FAQ](#troubleshooting) for solutions. | ||||||
|
||||||
### Private endpoint status reference | ||||||
|
||||||
When you use private endpoint connections, the statuses of private endpoints or private endpoint services is displayed on your instance-level **Networking** page: | ||||||
|
||||||
- switch to your target instance using the combo box in the upper-left corner, and then click **Settings** > **Networking** in the left navigation pane. | ||||||
lilin90 marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
|
||||||
The possible statuses of a private endpoint are explained as follows: | ||||||
|
||||||
- **Not Configured**: The endpoint service is created but the private endpoint is not created yet. | ||||||
- **Pending**: Waiting for processing. | ||||||
- **Active**: Your private endpoint is ready to use. You cannot edit a private endpoint in this status. | ||||||
- **Deleting**: The private endpoint is being deleted. | ||||||
- **Failed**: The private endpoint creation fails. You can click **Edit** of that row to retry the creation. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The phrase "of that row" is a bit informal. Consider rephrasing for better clarity.
Suggested change
|
||||||
|
||||||
The possible statuses of a private endpoint service are explained as follows: | ||||||
|
||||||
- **Creating**: The endpoint service is being created, which takes 3 to 5 minutes. | ||||||
- **Active**: The endpoint service is created, regardless of whether the private endpoint is created or not. | ||||||
- **Deleting**: The endpoint service or the instance is being deleted, which takes 3 to 5 minutes. | ||||||
|
||||||
## Troubleshooting | ||||||
|
||||||
### I cannot connect to a TiDB instance via a private endpoint after enabling private DNS. Why? | ||||||
|
||||||
You might need to properly set the security group for your VPC endpoint in the AWS Management Console. Go to **VPC** > **Endpoints**. Right-click your VPC endpoint and select the proper **Manage security groups**. A proper security group within your VPC that allows inbound access from your EC2 instances on Port 4000 or a customer-defined port. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This sentence can be rephrased for better clarity and to correctly format the port number according to the style guide.
Suggested change
|
||||||
|
||||||
 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This sentence can be rephrased for better clarity and to fix the extra space after `Owner``.