Connecting the Cloud SQL using the Cloud SQL Proxy

Connecting the Cloud SQL using the Cloud SQL Proxy

23 October 2020

Introduction

To host a dynamic website we are going to use Cloud SQL, AppEngine, Cloud SQL proxy, and PHP.

What is Cloud SQL?

Cloud SQL is a MySQL database service that is hosted on Google Cloud and does not require any software installation and maintenance because the service is provided by Google Cloud. The Google Cloud should be maintained, managed, and administered by itself. Just as regular MySQL database, Google Cloud SQL also lets you create, update, configure and utilize a relational database.

What is Proxy?

The proxy uses a secure tunnel to communicate with its companion process running on the server. We can use the proxy in the absent of the IP address. We can take App Engine as an example here. Proxy acts as a Local client. Application communicates with the proxy with the standard database protocol used by your database.

Connecting_the_Cloud_SQL_using_the_Cloud_SQL_Proxy_01

Why Cloud SQL Proxy?

It provides secure access to the Cloud SQL Second Generation Instance. The proxy automatically encrypts the traffic to and from the database.

The Proxy handles the authentication with the Cloud SQL, in absent of the static IP address.

Requirements

The following details that you need to take care of:

  1. Cloud SQL Instance, the proxy should build the connection.
  2. Where it will should listen the data is coming.
  3. Where to ding the credentials.

It’s your choice to configure the proxy as it listin on TCP port or on a Unix socket. If you chose the Unix socket then create a socket first;  usually, we create /cloudsql/ directory.

For TCP, the proxy listens on localhost by default

Note: The Cloud SQL Proxy does not support Unix sockets on Windows.

Creating a Cloud SQL instance

You can create a Cloud SQL instance by using the gcloud command as

gcloud sql instances create [INSTANCE_NAME] --tier=[MACHINE_TYPE] --region=[REGION]

For Example:

gcloud sql instances create instance1 --tier=db-n1-standard-2 --region=europe-west2

Set the password for “root@%” MySQL user:

gcloud sql users set-password root --host=% --instance [INSTANCE_NAME] --password [PASSWORD]

Once the instance creation is done then you can find the instance in cloud SQL. Then find out the INSTANCE_CONNECTION_NAME for the instance under the Instance details page. It uses the format PROJECT_ID:REGION:INSTANCE_ID.

Cloud SQL Admin API

In order to communicate with the database,  you have to enable the Cloud SQL Admin API, if it is not enabled already. Follow the steps below to enable the Cloud SQL Admin API.

  1. Click on APIs and Services
  2. Click ENABLE APIS AND SERVICES.
  3. Search the “Cloud SQL Admin API” using the search box.
  4. Enable the API if it is not.

Connect to the Cloud SQL using Cloud SQL Proxy

  1. Enable the Cloud SQL Admin API. That we have done above
  2. Install the proxy in cloud shell by executing the command below
    1. wget https://dl.google.com/cloudsql/cloud_sql_proxy.linux.amd64 -O cloud_sql_proxy
    2. chmod +x cloud_sql_proxy
  3. Make sure to the default service account should have below IAM role
    1. Cloud SQL Client (Recommended)
    2. Cloud SQL Editor
    3. Cloud SQL Admin
  4. Or else create the new service account and follow the below instructions
    1. Click Create a service account.
    2. In the Create service account dialog, provide a descriptive name for the service account.
    3. For Role select any of the Role mentioned above
    4. Change the Service account ID to a unique, easily recognizable value.
    5. Click Furnish a new private key and confirm that the key type is JSON. and click Create
  5. Start the proxy Using the Unix Socket
    1. sudo mkdir /cloudsql; sudo chmod 777 /cloudsql
    2. ./cloud_sql_proxy -dir=/cloudsql &
  6. Start the client session
    1. mysql -u <USERNAME> -p -S /cloudsql/<INSTANCE_CONNECTION_NAME>
    2. Replace <USERNAME> and <INSTANCE_CONNECTION_NAME> with yours.
    3. It will ask for a password, then enter the password that you have set while creating the database.
    4. You should see the mysql prompt.

search
Blog Categories
Request a quote