Skip to content

Commit f6fb938

Browse files
authored
Merge pull request #108294 from BryanTrach-MSFT/patch-66
(forumsteam) fixes MicrosoftDocs/azure-docs#50181
2 parents 5fce600 + 35341b0 commit f6fb938

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

articles/app-service/app-service-web-tutorial-php-mysql.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,8 @@ az mysql server firewall-rule create --name AllowLocalClient --server <mysql_ser
208208
In the local terminal window, connect to the MySQL server in Azure. Use the value you specified previously for _&lt;mysql_server_name>_. When prompted for a password, use the password you specified when you created the database in Azure.
209209

210210
```bash
211-
mysql -u <admin_user>@<mysql_server_name> -h <mysql_server_name>.mysql.database.azure.com -P 3306 -p
211+
mysql -u <admin_user>@<mysql_server_name> -h <mysql_server_name>.mysql.database.azure.com -P 3306 -p<PASSWORD> --ssl-mode=REQUIRED --ssl-ca=<PATH_TO_PEM>
212+
212213
```
213214

214215
### Create a production database

0 commit comments

Comments
 (0)