Total Page Preview:   000000006574

How to create a MySQL instance using cloudshell in gcp?

In this article I am going to explain how to MySQL instance list in google cloud(gcp) cloudshell command.

 

Syntax 

gcloud sql instances create [INSTANCE_NAME] \
--database-version=[DATABASE_VERSION] --tier=db-n1-standard-1 \
--region=[REGION] --root-password=[password123]

Where:

--database-version = MYSQL_5_5, MYSQL_5_6, MYSQL_5_7

--region = REGION; default="us-central"  More

 

Example

 gcloud sql instances create prod-instance \
--database-version=MYSQL_5_7 --tier=db-n1-standard-1 \
--region=us-central1 --root-password=[password123]

 

OUTPUT

Creating Cloud SQL instance...done.
Created [https://sqladmin.googleapis.com/sql/v1beta4/projects/hipaaprojects/instances/prod-instance].
NAME       DATABASE_VERSION  LOCATION        TIER              PRIMARY_ADDRESS  PRIVATE_ADDRESS  STATUS
prod-instance  MYSQL_5_7         europe-west2-a  db-n1-standard-2  35.246.27.104    -                RUNNABLE

 

 

Thank You

About Author

Brijesh Kumar

Database Developer

I have more then 6 years Experience in Microsoft Technologies - SQL Server Database, ETL Azure Cloud - Azure SQL Database, CosmosDB, Azure Data Factory, PowerBI, Web Job, Azure Function, Azure Storage, Web Apps, Powershall and Database Migration On-Premise to Azure Cloud.
LinkedIn : https://www.linkedin.com



Comments

Greaves
17-Mar-2021
Saved as a favorite, I really like your blog!