Sunday, June 21, 2020

Export database + mysqldump + MySql


I share example how to export database from command line, use mysql dump

A DB, then:

mysqldump -u [uname] -p db_name > db_bk.sql
   
Remote DB, then:

$ mysqldump -P 3306 -h [ip_address] -u [uname] -p db_name > db_bk.sql











No comments:

Post a Comment

Provisioning Cloud SQL with Private Service Connect Using Terraform & Accessing from Cloud Run with Spring Boot

In this post, we'll explore how to provision Cloud SQL instances with Private Service Connect (PSC) connectivity using Terraform and the...