@@ -13,7 +13,7 @@ working WordPress project for the
1313* Enable Billing on that project
1414* [ Enable Cloud SQL API] [ cloud-sql-api-enable ]
1515* Install [ Google Cloud SDK] [ gcloud-sdk ]
16- * [ Install mysql-client] [ mysql-client ]
16+ * Install the [ mysql-client] [ mysql-client ] command line tool
1717* [ Install Memcache] [ memcache-installation ]
1818
1919## Project preparation
@@ -31,7 +31,7 @@ $ gcloud app create
3131```
3232
3333Then configure the App Engine default GCS bucket for later use. The default App
34- Engine bucket looks like YOUR_PROJECT_ID.appspot.com. Change the default Access
34+ Engine bucket is named YOUR_PROJECT_ID.appspot.com. Change the default Access
3535Control List (ACL) of that bucket as follows:
3636
3737```
@@ -59,9 +59,8 @@ $ gcloud sql users set-password root % \
5959 --instance wp --password=YOUR_INSTANCE_ROOT_PASSWORD # Don't use this password!
6060```
6161
62- To access this MySQL instance, use Cloud SQL Proxy.
63- Download an appropriate binary from
64- [ the download page] [ cloud-sql-proxy-download ] and make it executable.
62+ To access this MySQL instance, use Cloud SQL Proxy. [ Download] [ cloud-sql-proxy-download ]
63+ it to your local computer and make it executable.
6564
6665If you haven’t created a service account for the project,
6766create it on [ the Credentials section] [ credentials-section ] in the
@@ -79,8 +78,8 @@ $ cloud_sql_proxy \
7978 -credential_file=PATH_TO_YOUR_SERVICE_ACCOUNT_JSON_FILE
8079```
8180
82- Now you can access the Cloud SQL instance with the MySQL client. Create a new
83- database and a user as follows:
81+ Now you can access the Cloud SQL instance with the MySQL client in a separate
82+ command line tab. Create a new database and a user as follows:
8483
8584```
8685$ mysql -h 127.0.0.1 -u root -p
0 commit comments