Cesar Flores
Cesar Flores

Reputation: 1

Access to mysql directory in Google Cloud SQL

I had a MySQL database in Google Cloud Platform, one of the tables failed and I need to access the Ubuntu instance to recover the innodb files from the database. But it only gives me access to the MySQL client.

Upvotes: 0

Views: 297

Answers (1)

Armin_SC
Armin_SC

Reputation: 2270

Google Cloud SQL provides a fully-managed service endpoint. This means that you cannot access directly to the virtual machine; Instead, you have access only to the MySQL database client.

An available option to perform a point-in-time recovery is the Restoring an instance alternative where you can use a backup file to restore the instance to the same instance or to a different one.

Upvotes: 1

Related Questions