/azure-web-server-to-flexible-mysql

Azure Virtual Machine to Azure Database for Flexible MySQL

Primary LanguageBicep

Azure Virtual Machine to Azure Database for Flexible MySQL

A simple demo to connect to Azure DB for Mysql Flexible from Azure VM running Ubuntu.

๐ŸŽฏ Solution

Miztiik Automation - Azure Virtual Machine to Azure Database for MySQL Flexible - Secure Connection

  1. ๐Ÿงฐ Prerequisites

    This demo, along with its instructions, scripts, and Bicep template, has been specifically designed to be executed in the northeurope region. However, with minimal modifications, you can also try running it in other regions of your choice (the specific steps for doing so are not covered in this context)

  2. โš™๏ธ Setting up the environment

    • Get the application code

      git clone https://github.com/miztiik/azure-web-server-to-mysql.git
      cd azure-web-server-to-mysql
  3. ๐Ÿš€ Prepare the local environment

    Ensure you have jq, Azure Cli and bicep working

    jq --version
    func --version
    bicep --version
    bash --version
    az account show
  4. ๐Ÿš€ Deploying the Solution

    • Stack: Main Bicep The params required for the modules are in params.json. Modify them as needed. The helper deployment script deploy.sh will deploy the main.bicep file. This will create the following resoureces

      • Resource Group(RG)
      • VNet, Subnet & Virtual Machine
      • Virtual Machine(Ubuntu) - 1 - Defined in params.json named vmCount
        • Bootstrapped with custom libs using userData script - Installs Nginx
        • Install Azure Monitoring Agent
      • User Managed Identity - Identity attached to the VM with the following permissions,
        • Monitoring Metrics Publisher
      • Azure Database for MySQL Server - Flexible
        • Admin User
        • Admin Password
        • SQL Version - 8.0
        • Apparently Northeurope doesn't support high availability for Flexible servers as of Q2-2023

      Note - I hacked the template from another repo of mine, so you will see some unused resources(log analytics workspace/queues etc.,). You can safely ignore them, But do remember to clean up your Resource Group to avoid unnecessary costs.

    # make deploy
    sh deployment_scripts/deploy.sh

    After successfully deploying the stack, Check the Resource Groups/Deployments section for the resources.

  5. ๐Ÿ”ฌ Testing the solution

    • Login to your VM, You can find the public IP address in the resource blade. You can also get it from the Azure Portal. You may also try connecting to the database from local machine if you have mysql client, In this case, lets use the Azure VM as it is already bootstrapped with the mysql client

      ssh miztiik@<PUBLIC_IP_ADDRESS>
    • You can find the Database Server anem balancer public IP address in the resource blade. You can also get it from the Azure Portal.

      #!/bin/bash
      
      # MySQL Server Details
      HOST='store-backend-web-server-to-mysql-db-002.mysql.database.azure.com'
      PORT=3306
      USERNAME='miztiik@store-backend-web-server-to-mysql-db-002'
      PASSWORD=''
      
      # Database and Table Details
      DATABASE="miztiik_store_backend_db_2"
      TABLE="store_events_2"
      
      
      # Maximum record count for the for loop
      RECORD_COUNT=10
      
      # Connect to MySQL and create database
      mysql -h "$HOST" -P "$PORT" -u "$USERNAME" -p"$PASSWORD" <<EOF
      CREATE DATABASE $DATABASE;
      EOF
      
      # Switch to the newly created database
      mysql -h "$HOST" -P "$PORT" -u "$USERNAME" -p"$PASSWORD" -e "USE $DATABASE;"
      
      # Create table
      mysql -h "$HOST" -P "$PORT" -u "$USERNAME" -p"$PASSWORD" -e "CREATE TABLE IF NOT EXISTS $DATABASE.$TABLE (id INT PRIMARY KEY, ts TIMESTAMP, msg VARCHAR(255));"
      
      # Insert records using for loop
      for ((i=1; i<=RECORD_COUNT; i++))
      do
      RANDOM_INCREMENT=$((RANDOM % 10 + 1))
      MESSAGE="Hello World from Miztiiik $RANDOM_INCREMENT"
      mysql -h "$HOST" -P "$PORT" -u "$USERNAME" -p"$PASSWORD" -e "INSERT INTO $DATABASE.$TABLE (id, ts, msg) VALUES ($i, CURRENT_TIMESTAMP, '$MESSAGE');"
      done
      
      # Verify inserted records
      mysql -h "$HOST" -P "$PORT" -u "$USERNAME" -p"$PASSWORD" -e "SELECT * FROM $DATABASE.$TABLE;"

      You should see an output like this,

      +----+---------------------+------------------------------+
      | id | ts                  | msg                          |
      +----+---------------------+------------------------------+
      | 1  | 2023-05-28 09:20:30 | Hello World from Miztiiik 1  |
      | 2  | 2023-05-28 09:20:30 | Hello World from Miztiiik 2  |
      | 3  | 2023-05-28 09:20:30 | Hello World from Miztiiik 3  |
      | 4  | 2023-05-28 09:20:30 | Hello World from Miztiiik 4  |
      | 5  | 2023-05-28 09:20:30 | Hello World from Miztiiik 5  |
      | 6  | 2023-05-28 09:20:30 | Hello World from Miztiiik 6  |
      | 7  | 2023-05-28 09:20:30 | Hello World from Miztiiik 7  |
      | 8  | 2023-05-28 09:20:30 | Hello World from Miztiiik 8  |
      | 9  | 2023-05-28 09:20:30 | Hello World from Miztiiik 9  |
      | 10 | 2023-05-28 09:20:30 | Hello World from Miztiiik 10 |
      +----+---------------------+------------------------------+
      

      You can also try the same SQL Workbench or any other MySQL client.

      -- Create the database
      CREATE DATABASE IF NOT EXISTS miztiik_store_backend_db_3;
      
      -- Switch to the newly created database
      USE miztiik_store_backend_db_3;
      
      -- Create the table
      CREATE TABLE IF NOT EXISTS store_events_3 (id INT PRIMARY KEY, ts TIMESTAMP, msg VARCHAR(255));
      
      
      -- Create the stored procedure to insert records
      DELIMITER //
      CREATE PROCEDURE insert_records(IN num_records INT)
      BEGIN
         DECLARE i INT DEFAULT 1;
         WHILE i <= num_records DO
            INSERT INTO miztiik_store_backend_db_3.store_events_3 (id, ts, msg) VALUES (i, CURRENT_TIMESTAMP, CONCAT('Hello World from Miztiiik ', i));
            SET i = i + 1;
         END WHILE;
      END //
      DELIMITER ;
      
      -- Call the stored procedure to insert 10 records
      CALL insert_records(10);
      
      -- Query the table
      SELECT * FROM miztiik_store_backend_db_3.store_events_3;
      ```sql
      
  6. ๐Ÿ“’ Conclusion

    In this demonstration, we have shown how to connect to Azure DB for Flexible Mysql from Azure VM, insert and retreive records.

  7. ๐Ÿงน CleanUp

    If you want to destroy all the resources created by the stack, Execute the below command to delete the stack, or you can delete the stack from console as well

    # Delete from resource group
    az group delete --name Miztiik_Enterprises_xxx --yes
    # Follow any on-screen prompt

    This is not an exhaustive list, please carry out other necessary steps as maybe applicable to your needs.

๐Ÿ“Œ Who is using this

This repository aims to show how to Bicep to new developers, Solution Architects & Ops Engineers in Azure.

๐Ÿ’ก Help/Suggestions or ๐Ÿ› Bugs

Thank you for your interest in contributing to our project. Whether it is a bug report, new feature, correction, or additional documentation or solutions, we greatly value feedback and contributions from our community. Start here

๐Ÿ‘‹ Buy me a coffee

ko-fi Buy me a coffee โ˜•.

๐Ÿ“š References

  1. Azure Docs: Just In Time Access

๐Ÿท๏ธ Metadata

miztiik-success-green

Level: 100