Homework 9
For this assignment, we were to take our MVC Application from HW8 and deploy it to the cloud. In order to do this, we were tasked with using Azure to assist us with deployment. We have to first make an account, then create a resource group, add a database to that resource group, connect our local Microsoft SQL Server Management to that database, connect our MVC App to that DB connection, and finally deploy our project to the cloud. Below I will walk through each of these steps in more detail as to understand everything that was needed to create this functionality.
Links
Want to go back?
Azure (Account and Resource Group)
Create an account with Azure.
Create Page:
Then create a resource group:
- Click on Resource Groups
- Select Add (top of page)
- Give the Group a Name
- Choose Subscription (Pay as you go)
- Choose Location (Central US)
- Click Create
Add a Resouce:
Database (Server on Azure)
On Azure Select SQL Databases:
- Select Add (top of page)
- Give the DB a Name
- Choose Subscription (Pay as you go)
- Select the Resource Group you are going to use
- Select Source (Blank Database)
- Create a new server
- Give the server a Name
- Create an Admin user name
- Create a Password
- Choose Location (Central US)
- Make sure the checkbox for “Allow Azure services to access server is checked”
- Click the Select Button
- Make sure the pricing tier is “Basic, 2GB” or $5.00 per month
- Click Create
Add a Database:
Firewall (Adding a Rule)
On Azure select the resource group in question
- From there select your SQL server
- Under Firewalls and Virtual Networks, select Show firewall settings
- Add a rule by giving it a name and allowing your IP address access to the server (can also select a range)
- Click Save (Important)
Add a Firewall Rule:
Connect Locally to Microsoft SQL Server Management Studio
Open up Microsoft SQL Server Management Studio
- Click on Connect
- Server Type should be Database Engine
- Server Name should be obtained from Azure
- In Azure Click on your Database
- Next to Server Name click the copy button
Get the DB Server Name:
- Paste this in the Management Studio Section for “Server Name”
- Under Authentication, choose SQL Server Authentication
- Enter Credentials for Azure SQL DB Server Information
- Enter Login and Password Information
- Click Connect
Management Studio Now Connected:
Connect to the online server in MVC
Open the Server Explorer tab
- Under Azure, select SQL Databases
- Select the DB and right click, select open in SQL Server Object Explorer
- Right click SQL Server, click add SQL server
- Under Azure, select the DB and enter password
- Run up script and make connection to DB
DB Now Updated:
Get the Connection String
The Connection String is online through Azure
- On Azure select SQL Databases
- Select Database and find option for Connection Strings
- Replace old connection string and DB name with new connection information
- In String update server user name and pw
Create Web App on Azure
Back at Azure, Click on App Services
- Click on Add
- Select Web App, and hit Create
- Name the App
- Pay as you go/Use Existing Resource Group
- App Service Plan: F1 WestPlanFree
- Click Create
- Back at App Services, select the App
- Under Application Settings left, look for Connection Strings
- Click Add New Connection String
- “Name” should be DB name and “Value” should be connection string
- “Type” is SQL server
- Click “Save”
Web App Created:
Deply to Azure
To publish we need to follow the below steps:
- In MVC, under build click on Publish
- New Profile, then Click App Service
- Select Existing, then Select our App from the list below
- If a refresh, click on publish
App on Azure Live: