@@ -13,7 +13,7 @@ working WordPress project for the
13
13
* Enable Billing on that project
14
14
* [ Enable Cloud SQL API] [ cloud-sql-api-enable ]
15
15
* Install [ Google Cloud SDK] [ gcloud-sdk ]
16
- * [ Install mysql-client] [ mysql-client ]
16
+ * Install the [ mysql-client] [ mysql-client ] command line tool
17
17
* [ Install Memcache] [ memcache-installation ]
18
18
19
19
## Project preparation
@@ -31,7 +31,7 @@ $ gcloud app create
31
31
```
32
32
33
33
Then 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
35
35
Control List (ACL) of that bucket as follows:
36
36
37
37
```
@@ -59,9 +59,8 @@ $ gcloud sql users set-password root % \
59
59
--instance wp --password=YOUR_INSTANCE_ROOT_PASSWORD # Don't use this password!
60
60
```
61
61
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.
65
64
66
65
If you haven’t created a service account for the project,
67
66
create it on [ the Credentials section] [ credentials-section ] in the
@@ -79,8 +78,8 @@ $ cloud_sql_proxy \
79
78
-credential_file=PATH_TO_YOUR_SERVICE_ACCOUNT_JSON_FILE
80
79
```
81
80
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:
84
83
85
84
```
86
85
$ mysql -h 127.0.0.1 -u root -p
0 commit comments