From e8fe2328749e0dc39e565504ebb5a78af1b57ba7 Mon Sep 17 00:00:00 2001 From: Abhishek Reddy <17237531+reddyabhishek@users.noreply.github.com> Date: Tue, 4 Feb 2025 12:52:31 +0530 Subject: [PATCH] Adding a note for people using managed identity --- WordPress/changing_mysql_database_password.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/WordPress/changing_mysql_database_password.md b/WordPress/changing_mysql_database_password.md index 3d0f3a2..3d80d53 100644 --- a/WordPress/changing_mysql_database_password.md +++ b/WordPress/changing_mysql_database_password.md @@ -1,5 +1,7 @@ # Changing MySQL database password +## Note that if you are using Managed Identity, do not follow this document. Refer to this document: [Enabling Managed Identity with Azure MySQL for WordPress App Service](https://github.com/Azure/wordpress-linux-appservice/blob/main/WordPress/wordpress_enable_managed_identity_with_mysql.md) + WordPress deployment creates an AppService and a MySQL flexible database server under the same resource group. Login credentials for the MySQL server are generated randomly during deployment process. These database connection details are configured into WordPress via **Application Settings** option available in the AppService. You can retrieve the database connection details from Application Setting section in case you forgot to note them down during the creation time. @@ -13,6 +15,7 @@ Please note that the Application Settings related to database connection are **p | DATABASE_USERNAME | | DATABASE_PASSWORD | + ## Changing MySQL Database Password First, go to the MySQL resource corresponding to your WordPress deployment, and click on **Reset Password** option as shown below. Now enter the new password and click on Save. Wait until the action is completed.